frontend/.pnpm-store/v3/files/6b/e3b807a6f3d2176a4c763ae6976c0ac72a5804c33d33996dd43ad7a492da16e7902db0d85300f7c33a58c4ad84bf7eeba5c19483a5c9dbca48d412786ec7c9

10 lines
309 B
Plaintext

# `globalThis` _(ext/global-this)_
Returns global object. Resolve native [globalThis](https://github.com/tc39/proposal-global) if implemented, otherwise fallback to internal resolution of a global object.
```javascript
const globalThis = require("ext/global-this");
globalThis.Array === Array; // true
```