Files
emaui/node_modules/es-toolkit/dist/_internal/globalThis.mjs
2026-05-29 15:23:46 +03:00

7 lines
322 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
export { globalThis_ };