15 lines
411 B
JavaScript
15 lines
411 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
const globalThis_ = (typeof globalThis === 'object' && globalThis) ||
|
|
(typeof window === 'object' && window) ||
|
|
(typeof self === 'object' && self) ||
|
|
(typeof global === 'object' && global) ||
|
|
(function () {
|
|
return this;
|
|
})() ||
|
|
Function('return this')();
|
|
|
|
exports.globalThis = globalThis_;
|