diff options
author | ecyrbe <ecyrbe@gmail.com> | 2020-02-23 00:46:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-22 18:46:52 -0500 |
commit | fb98556d56d0defa325fab1296077627cce31aab (patch) | |
tree | c5589b7cdc21d56d440ab13a1abc527cf072b103 /cli/js/deno.ts | |
parent | c34d96d86557d434bdf124063e4eec4662067c1e (diff) |
feat(std/node): add os.loadavg() (#4075)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index d20c64281..c1b074f3d 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -85,7 +85,7 @@ export { ShutdownMode, shutdown } from "./net.ts"; -export { dir, env, exit, isTTY, execPath, hostname } from "./os.ts"; +export { dir, env, exit, isTTY, execPath, hostname, loadavg } from "./os.ts"; export { permissions, PermissionName, |