2026-05-31 13:54:31 +02:00

7 lines
333 B
JavaScript

//#region src/_internal/globalThis.ts
const globalThis_ = typeof globalThis === "object" && globalThis || typeof window === "object" && window || typeof self === "object" && self || typeof global === "object" && global || (function() {
return this;
})() || Function("return this")();
//#endregion
exports.globalThis_ = globalThis_;