UNPKG

@oazmi/build-tools

Version:

general deno build tool scripts which I practically use in all of my typescript repos

9 lines (8 loc) 327 B
// Copyright 2018-2025 the Deno authors. MIT license. // This module is browser compatible. export function isCloser(value) { return typeof value === "object" && value !== null && value !== undefined && "close" in value && // deno-lint-ignore no-explicit-any typeof value["close"] === "function"; }