mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 03:48:26 -04:00
10 lines
272 B
JavaScript
10 lines
272 B
JavaScript
'use strict';
|
|
var $ = require('../internals/export');
|
|
var globalThis = require('../internals/global-this');
|
|
|
|
// `globalThis` object
|
|
// https://tc39.es/ecma262/#sec-globalthis
|
|
$({ global: true, forced: globalThis.globalThis !== globalThis }, {
|
|
globalThis: globalThis
|
|
});
|