summaryrefslogtreecommitdiff
path: root/std/node/global.ts
blob: c877d1d531b3c305d0d3d319ea73a09263e9913d (plain)
1
2
3
4
5
6
7
8
9
Object.defineProperty(globalThis, Symbol.toStringTag, {
  value: "global",
  writable: false,
  enumerable: false,
  configurable: true,
});

// @ts-ignore
globalThis["global"] = globalThis;