standard-objects-globalthis
v1.0.0
Published
Standard built-in object globalThis
Readme
standard-objects-globalthis
The standard built-in object globalThis if it exists, otherwise undefined.
Part of the Standard Objects project.
Installation
npm install standard-objects-globalthisUsage
const $globalThis = require("standard-objects-globalthis")
const assert = require("assert")
if (typeof globalThis !== "undefined") {
assert($globalThis === globalThis)
} else {
assert($globalThis === undefined)
}