diff options
author | Shiva Prasanth <kesavarapu.siva@gmail.com> | 2018-10-14 01:33:27 +0530 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-13 16:03:27 -0400 |
commit | bbf88c529587647aaa0089233fea19e961a764f1 (patch) | |
tree | b969889a5f21e5b72cabf3b5de6850dc0713d9a0 /js/deno.ts | |
parent | d92c99eabaf28100a8d181b6f289e2e3fc295107 (diff) |
Add cwd() and chdir() (#907)
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/deno.ts b/js/deno.ts index 212544541..565d4a7e6 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -2,6 +2,7 @@ // Public deno module. /// <amd-module name="deno"/> export { env, exit } from "./os"; +export { chdir, cwd } from "./dir"; export { File, open, stdin, stdout, stderr, read, write, close } from "./files"; export { copy, |