Permalink
January 18, 2023 20:26
Newer
100644
9 lines (6 sloc)
198 Bytes
Ignoring revisions in .git-blame-ignore-revs.
1
'use strict';
2
3
var getGlobal = require('globalthis/polyfill');
4
5
// https://262.ecma-international.org/6.0/#sec-getglobalobject
6
7
module.exports = function GetGlobalObject() {
8
return getGlobal();
9
};