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.
19 lines
523 B
19 lines
523 B
/* global globalThis */
|
|
/*
|
|
This file is copied from `core-js`.
|
|
https://github.com/zloirock/core-js/blob/master/packages/core-js/internals/global.js
|
|
|
|
MIT License
|
|
Author: Denis Pushkarev (@zloirock)
|
|
*/
|
|
|
|
const check = function (it) {
|
|
return it && it.Math == Math && it;
|
|
};
|
|
|
|
module.exports =
|
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
check(typeof window == 'object' && window) ||
|
|
check(typeof self == 'object' && self) ||
|
|
check(typeof global == 'object' && global) ||
|
|
Function('return this')();
|