diff options
| author | Axetroy <troy450409405@gmail.com> | 2019-04-08 21:29:44 +0800 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-04-08 09:29:44 -0400 |
| commit | b99f8375b2d3abe6779e7c2c666a88b94d6d7bff (patch) | |
| tree | d7421428dcb1586980bba972cf8d7c048fb309a3 /fs/mod.ts | |
| parent | 985386228b608c1a4d05e4a597ce3f03c6a696a0 (diff) | |
feat: add entry point file for fs modules (denoland/deno_std#272)
Original: https://github.com/denoland/deno_std/commit/290cbcb9dafe8e1ff45f6de406f5d511144b145c
Diffstat (limited to 'fs/mod.ts')
| -rw-r--r-- | fs/mod.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/fs/mod.ts b/fs/mod.ts new file mode 100644 index 000000000..28b5753b9 --- /dev/null +++ b/fs/mod.ts @@ -0,0 +1,12 @@ +// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +export * from "./empty_dir.ts"; +export * from "./ensure_dir.ts"; +export * from "./ensure_file.ts"; +export * from "./exists.ts"; +export * from "./glob.ts"; +export * from "./globrex.ts"; +export * from "./move.ts"; +export * from "./read_json.ts"; +export * from "./write_json.ts"; +export * from "./walk.ts"; +export * from "./eol.ts"; |
