diff options
author | ecyrbe <ecyrbe@gmail.com> | 2020-02-24 14:35:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-24 08:35:45 -0500 |
commit | fb08cf7005c9dc781d51c7d02ae06060e44d32a3 (patch) | |
tree | 2a74abd57187a1b0015fd1d1873c10399e60fccd /cli/js/deno.ts | |
parent | fe9ac35a650dfeea9168fc1cbbbf323b5689fc3b (diff) |
Add missing node os.release() implementation (#4065)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index c1b074f3d..887f60826 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -85,7 +85,16 @@ export { ShutdownMode, shutdown } from "./net.ts"; -export { dir, env, exit, isTTY, execPath, hostname, loadavg } from "./os.ts"; +export { + dir, + env, + exit, + isTTY, + execPath, + hostname, + loadavg, + osRelease +} from "./os.ts"; export { permissions, PermissionName, |