blob: 7d147cc4b1de8d5b22d9d763918b2b9edd7862eb (
plain)
1
2
3
4
5
6
7
8
9
|
Object.defineProperty(globalThis, Symbol.toStringTag, {
value: "global",
writable: false,
enumerable: false,
configurable: true,
});
// @ts-expect-error
globalThis["global"] = globalThis;
|