123456789101112131415161718192021222324252627282930313233 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.getGlobal = void 0;
- function getGlobal() {
- if (typeof globalThis !== 'undefined') {
- return globalThis;
- }
- if (typeof global !== 'undefined') {
- return global;
- }
-
-
- if (typeof window !== 'undefined') {
-
-
- return window;
- }
-
-
- if (typeof self !== 'undefined') {
-
-
- return self;
- }
- }
- exports.getGlobal = getGlobal;
|