web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
309 B

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