summaryrefslogtreecommitdiff
path: root/std/node/global.ts
blob: 1049f8ba1518893dda81c0936982c84316f267db (plain)
1
2
3
4
5
6
7
8
9
10
11
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 {};