getGlobalScope.js 273 B

12345678910
  1. export function getGlobalScope() {
  2. if (typeof global !== 'undefined')
  3. return global;
  4. if (typeof window !== 'undefined')
  5. return window;
  6. if (typeof self !== 'undefined')
  7. return self;
  8. return;
  9. }
  10. //# sourceMappingURL=getGlobalScope.js.map