diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-01-06 14:16:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-06 14:16:42 -0500 |
commit | 57301909cd9eee6aeaafeda19aab372e034ff7c4 (patch) | |
tree | 60e7d9929fe5bd6f46dca5b38b1e70a790170e70 /js/deno.ts | |
parent | 028d8e4d90d2224334b44ccb1836dc47d85a9526 (diff) |
Add deno.pid (#1464)
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/deno.ts b/js/deno.ts index 2e82613e8..07068ca31 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -2,7 +2,7 @@ // Public deno module. /// <amd-module name="deno"/> -export { env, exit } from "./os"; +export { pid, env, exit } from "./os"; export { chdir, cwd } from "./dir"; export { File, |