12345678910111213141516171819 |
- 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')();
|