diff options
Diffstat (limited to 'std/node/process.ts')
-rw-r--r-- | std/node/process.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/std/node/process.ts b/std/node/process.ts index f4bdd8686..9da41b45b 100644 --- a/std/node/process.ts +++ b/std/node/process.ts @@ -38,6 +38,13 @@ export const process = { }, }; +Object.defineProperty(process, Symbol.toStringTag, { + enumerable: false, + writable: true, + configurable: false, + value: "process", +}); + Object.defineProperty(globalThis, "process", { value: process, enumerable: false, |