From bbf88c529587647aaa0089233fea19e961a764f1 Mon Sep 17 00:00:00 2001 From: Shiva Prasanth Date: Sun, 14 Oct 2018 01:33:27 +0530 Subject: Add cwd() and chdir() (#907) --- js/deno.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'js/deno.ts') 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. /// export { env, exit } from "./os"; +export { chdir, cwd } from "./dir"; export { File, open, stdin, stdout, stderr, read, write, close } from "./files"; export { copy, -- cgit v1.2.3