diff options
author | Ry Dahl <ry@tinyclouds.org> | 2019-12-18 09:29:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-18 09:29:00 -0500 |
commit | 077b6f7672b0d92edc9488622790d78fd8ab20c4 (patch) | |
tree | 3becfc0d6a68314f12a67dae0554e804d0aa6a2f /cli/js/deno.ts | |
parent | ff6b514a7b1087e7e5f363305cce46b513a3e562 (diff) |
Reduce all directory functions to Deno.dir() (#3518)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index 11f467580..8cce7bfce 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -1,27 +1,7 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. // Public deno module. -export { - env, - exit, - isTTY, - execPath, - homeDir, - cacheDir, - configDir, - dataDir, - dataLocalDir, - audioDir, - desktopDir, - documentDir, - downloadDir, - fontDir, - pictureDir, - publicDir, - templateDir, - videoDir, - hostname -} from "./os.ts"; +export { dir, env, exit, isTTY, execPath, hostname } from "./os.ts"; export { chdir, cwd } from "./dir.ts"; export { File, |