@mieweb/wikigdrive
Version:
Google Drive to MarkDown synchronization
9 lines (8 loc) • 327 B
JavaScript
// 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";
}