summaryrefslogtreecommitdiff
path: root/fs/mod.ts
diff options
context:
space:
mode:
authorAxetroy <axetroy.dev@gmail.com>2019-05-17 00:19:17 +0800
committerRyan Dahl <ry@tinyclouds.org>2019-05-16 12:19:17 -0400
commitf7dd691cfb953f7bc1419fe26af5e18f38ab7e84 (patch)
treebed935e73d2d0b752cb524243d33c16e7be556ff /fs/mod.ts
parent42a00733fcf4d04f35e7676db560495b8999ddfa (diff)
feat(fs): add copy/copySync (denoland/deno_std#278)
Original: https://github.com/denoland/deno_std/commit/ab5b0887ccde0ad9f00f1943e27bd73bc483833b
Diffstat (limited to 'fs/mod.ts')
-rw-r--r--fs/mod.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/mod.ts b/fs/mod.ts
index 8635911a4..edbd7009f 100644
--- a/fs/mod.ts
+++ b/fs/mod.ts
@@ -8,6 +8,7 @@ export * from "./exists.ts";
export * from "./glob.ts";
export * from "./globrex.ts";
export * from "./move.ts";
+export * from "./copy.ts";
export * from "./read_file_str.ts";
export * from "./write_file_str.ts";
export * from "./read_json.ts";