summaryrefslogtreecommitdiff
path: root/js/deno.ts
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2018-09-10 20:40:03 -0700
committerRyan Dahl <ry@tinyclouds.org>2018-09-12 10:24:17 -0400
commit1ffae651655746b95dd40207d91ba7c360b90c40 (patch)
tree4e37fafa7f712fc25b59f67de1faeb9b7190dafa /js/deno.ts
parent7c50c11f40556240a3693662e2cbae6da3090b89 (diff)
Add remove(), removeAll().
and removeSync(), removeAllSync().
Diffstat (limited to 'js/deno.ts')
-rw-r--r--js/deno.ts8
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";