Newer
Older
2022-autumn-study / node_modules / ext / global-this / is-implemented.js
@ItoRino ItoRino on 4 Oct 2022 168 bytes first commit
"use strict";

module.exports = function () {
	if (typeof globalThis !== "object") return false;
	if (!globalThis) return false;
	return globalThis.Array === Array;
};