diff options
author | Gerald <gera2ld@live.com> | 2020-07-23 12:09:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-23 00:09:20 -0400 |
commit | e18e46a3b3f734d1c848b80a16d11810597b49f4 (patch) | |
tree | 1cbeeee122efd4476d57d28c12f164a849a98099 | |
parent | fd900cfe215e919392941b39b57a16b4a9976eec (diff) |
fix(std/fs): remove unexisted imports (#6850)
-rw-r--r-- | std/fs/mod.ts | 2 | ||||
-rw-r--r-- | std/fs/test.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/std/fs/mod.ts b/std/fs/mod.ts index aa76b6925..e49d24bac 100644 --- a/std/fs/mod.ts +++ b/std/fs/mod.ts @@ -8,8 +8,6 @@ export * from "./exists.ts"; export * from "./expand_glob.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"; export * from "./write_json.ts"; export * from "./walk.ts"; diff --git a/std/fs/test.ts b/std/fs/test.ts new file mode 100644 index 000000000..57684a50e --- /dev/null +++ b/std/fs/test.ts @@ -0,0 +1,2 @@ +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +import "./mod.ts"; |