summaryrefslogtreecommitdiff
path: root/std/node/global.ts
blob: 3037cf23eef7537b18b5fc9270b5d43a1504a9cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.

Object.defineProperty(globalThis, Symbol.toStringTag, {
  value: "global",
  writable: false,
  enumerable: false,
  configurable: true,
});

// deno-lint-ignore no-explicit-any
(globalThis as any)["global"] = globalThis;

export {};