mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
Object.defineProperty(globalThis, Symbol.toStringTag, {
|
|
value: "global",
|
|
writable: false,
|
|
enumerable: false,
|
|
configurable: true,
|
|
});
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
(globalThis as any)["global"] = globalThis;
|
|
|
|
export {};
|