1234567891011121314151617181920212223242526272829 |
- export 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;
- }
- }
|