diff options
Diffstat (limited to 'cli/js/ops/fs/dir.ts')
-rw-r--r-- | cli/js/ops/fs/dir.ts | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cli/js/ops/fs/dir.ts b/cli/js/ops/fs/dir.ts deleted file mode 100644 index dbf468c62..000000000 --- a/cli/js/ops/fs/dir.ts +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. - -import { sendSync } from "../dispatch_json.ts"; - -export function cwd(): string { - return sendSync("op_cwd"); -} - -export function chdir(directory: string): void { - sendSync("op_chdir", { directory }); -} |