diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2018-09-10 20:40:03 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-12 10:24:17 -0400 |
commit | 1ffae651655746b95dd40207d91ba7c360b90c40 (patch) | |
tree | 4e37fafa7f712fc25b59f67de1faeb9b7190dafa /js/deno.ts | |
parent | 7c50c11f40556240a3693662e2cbae6da3090b89 (diff) |
Add remove(), removeAll().
and removeSync(), removeAllSync().
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/js/deno.ts b/js/deno.ts index a1eb639bb..3d0352a80 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -1,13 +1,9 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. // Public deno module. /// <amd-module name="deno"/> -export { - env, - exit, - makeTempDirSync, - renameSync, -} from "./os"; +export { env, exit, makeTempDirSync, renameSync } from "./os"; export { mkdirSync, mkdir } from "./mkdir"; +export { removeSync, remove, removeAllSync, removeAll } from "./remove"; export { readFileSync, readFile } from "./read_file"; export { FileInfo, statSync, lstatSync, stat, lstat } from "./stat"; export { writeFileSync, writeFile } from "./write_file"; |