diff options
author | Benjamin Lupton <b@lupton.cc> | 2020-06-24 06:00:47 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 16:00:47 -0400 |
commit | d16337cc9c59732fe81655482e08b72d844472e6 (patch) | |
tree | 9e343edba1b42aee590ee5a2955f9c123d6d9cd0 /std/node/os.ts | |
parent | 63db3e933e90cdf43580c4c670eace5cd92d5a43 (diff) |
fix(std/node): global process should usable (#6392)
Diffstat (limited to 'std/node/os.ts')
-rw-r--r-- | std/node/os.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/node/os.ts b/std/node/os.ts index 7d072cac8..afb472629 100644 --- a/std/node/os.ts +++ b/std/node/os.ts @@ -21,7 +21,7 @@ import { notImplemented } from "./_utils.ts"; import { validateIntegerRange } from "./util.ts"; import { EOL as fsEOL } from "../fs/eol.ts"; -import { process } from "./process.ts"; +import process from "./process.ts"; const SEE_GITHUB_ISSUE = "See https://github.com/denoland/deno/issues/3802"; |