diff options
author | Ali Hasani <a.hassssani@gmail.com> | 2020-04-09 03:13:35 +0430 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-08 18:43:35 -0400 |
commit | 68bde7a0c693794ff778c09154833ac0e9d177b4 (patch) | |
tree | 5d71ab6e881ffdab2fefbd3be023070d6046d0c8 /std/node/fs.ts | |
parent | 0cf4ac91e6917b76c00d3d4b790e9fefc4dc5323 (diff) |
feat(std/node): add fs.mkdir functions and fs.exists tests (#4660)
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, }; |