diff options
author | Guy Bedford <guybedford@gmail.com> | 2020-11-27 10:40:11 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-27 13:40:11 -0500 |
commit | ff3c5897ea7b8720894d2092c28889994f31c40e (patch) | |
tree | 8695a4858ce382cdd7f160303eae19892d04e811 /std/node/global.ts | |
parent | d2b32a65a787c8d3185a8d3ad1212bc82e24a195 (diff) |
fix(std/node): Inline default objects to ensure correct prototype (#8513)
Diffstat (limited to 'std/node/global.ts')
-rw-r--r-- | std/node/global.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/node/global.ts b/std/node/global.ts index 0ef688e63..d72760089 100644 --- a/std/node/global.ts +++ b/std/node/global.ts @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. /// <reference path="./global.d.ts" /> import { process as processModule } from "./process.ts"; -import { Buffer as bufferModule } from "./_buffer.ts"; +import { Buffer as bufferModule } from "./buffer.ts"; Object.defineProperty(globalThis, "global", { value: globalThis, |