1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

fix(std/fs): remove unexisted imports (#6850)

This commit is contained in:
Gerald 2020-07-23 12:09:20 +08:00 committed by GitHub
parent fd900cfe21
commit e18e46a3b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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";

2
std/fs/test.ts Normal file
View file

@ -0,0 +1,2 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import "./mod.ts";