mirror of
https://github.com/tiennm99/FBcount.git
synced 2026-05-19 17:28:12 +00:00
8 lines
168 B
JavaScript
8 lines
168 B
JavaScript
"use strict";
|
|
|
|
module.exports = function () {
|
|
if (typeof globalThis !== "object") return false;
|
|
if (!globalThis) return false;
|
|
return globalThis.Array === Array;
|
|
};
|