is-implemented.js 168 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 "use strict"; module.exports = function () { if (typeof globalThis !== "object") return false; if (!globalThis) return false; return globalThis.Array === Array; };