diff options
| author | Yoshiya Hinosawa <stibium121@gmail.com> | 2018-09-13 11:04:45 +0900 |
|---|---|---|
| committer | Bert Belder <bertbelder@gmail.com> | 2018-09-12 22:33:11 -0700 |
| commit | 0ca7301a2d6405101569e073153536aa99a084c9 (patch) | |
| tree | 96cbbf3b5e34a4f28d970dd7d9eaf07c82267b09 /js/deno.ts | |
| parent | 28812b833761c101d7d39a774f5b2619688765cf (diff) | |
feat: add deno.makeTempDir
Diffstat (limited to 'js/deno.ts')
| -rw-r--r-- | js/deno.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/deno.ts b/js/deno.ts index 187d0f27f..7ff763e8d 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -1,8 +1,9 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. // Public deno module. /// <amd-module name="deno"/> -export { env, exit, makeTempDirSync } from "./os"; +export { env, exit } from "./os"; export { mkdirSync, mkdir } from "./mkdir"; +export { makeTempDirSync, makeTempDir } from "./make_temp_dir"; export { removeSync, remove, removeAllSync, removeAll } from "./remove"; export { readFileSync, readFile } from "./read_file"; export { renameSync, rename } from "./rename"; |
