diff options
Diffstat (limited to 'std/node/fs.ts')
-rwxr-xr-x | std/node/fs.ts | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/std/node/fs.ts b/std/node/fs.ts index fc65a2637..4267fdb2b 100755 --- a/std/node/fs.ts +++ b/std/node/fs.ts @@ -9,6 +9,7 @@ import * as constants from "./_fs/_fs_constants.ts"; import { readFile, readFileSync } from "./_fs/_fs_readFile.ts"; import { readlink, readlinkSync } from "./_fs/_fs_readlink.ts"; import { exists, existsSync } from "./_fs/_fs_exists.ts"; +import { mkdir, mkdirSync } from "./_fs/_fs_mkdir.ts"; export { access, @@ -22,10 +23,12 @@ export { close, closeSync, constants, + exists, + existsSync, readFile, readFileSync, readlink, readlinkSync, - exists, - existsSync, + mkdir, + mkdirSync, }; |