first
This commit is contained in:
15
node_modules/core-js/internals/global.js
generated
vendored
Normal file
15
node_modules/core-js/internals/global.js
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
'use strict';
|
||||
var check = function (it) {
|
||||
return it && it.Math == Math && it;
|
||||
};
|
||||
|
||||
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
||||
module.exports =
|
||||
// eslint-disable-next-line es/no-global-this -- safe
|
||||
check(typeof globalThis == 'object' && globalThis) ||
|
||||
check(typeof window == 'object' && window) ||
|
||||
// eslint-disable-next-line no-restricted-globals -- safe
|
||||
check(typeof self == 'object' && self) ||
|
||||
check(typeof global == 'object' && global) ||
|
||||
// eslint-disable-next-line no-new-func -- fallback
|
||||
(function () { return this; })() || this || Function('return this')();
|
Reference in New Issue
Block a user