summaryrefslogtreecommitdiff
path: root/js/deno.ts
diff options
context:
space:
mode:
authorSajjad Hashemian <wolaws@gmail.com>2018-09-10 14:18:36 +0430
committerRyan Dahl <ry@tinyclouds.org>2018-09-10 15:02:07 -0400
commitc2663e1d82521e9b68a7e2e96197030a4ee00c30 (patch)
tree5223730175f88d24a028b7d1497a6a7312b77683 /js/deno.ts
parente293c204a07f5a7a862e835f8a5f54f5435f8b91 (diff)
Implement deno.mkdir()
Diffstat (limited to 'js/deno.ts')
-rw-r--r--js/deno.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/deno.ts b/js/deno.ts
index ce01c5dad..fab8ef4e2 100644
--- a/js/deno.ts
+++ b/js/deno.ts
@@ -6,12 +6,12 @@ export {
exit,
FileInfo,
makeTempDirSync,
- mkdirSync,
renameSync,
statSync,
lstatSync,
writeFileSync
} from "./os";
+export { mkdirSync, mkdir } from "./mkdir";
export { readFileSync, readFile } from "./read_file";
export { ErrorKind, DenoError } from "./errors";
export { libdeno } from "./libdeno";