diff options
author | qti3e <me@qti3e.com> | 2018-09-12 23:46:42 +0430 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-12 15:16:42 -0400 |
commit | 41c70b154f4dd9adf6df875c653bcf8701511ff0 (patch) | |
tree | bddea2fdb2478aab9de7e2a3b092b9295e9b1570 /js/deno.ts | |
parent | cb6c78c6d2dbd7298f27d7a0c3ffaa7ca255dca4 (diff) |
Add support for fetch() headers (#727)
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/js/deno.ts b/js/deno.ts index 6f71ee499..187d0f27f 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -1,11 +1,7 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. // Public deno module. /// <amd-module name="deno"/> -export { - env, - exit, - makeTempDirSync -} from "./os"; +export { env, exit, makeTempDirSync } from "./os"; export { mkdirSync, mkdir } from "./mkdir"; export { removeSync, remove, removeAllSync, removeAll } from "./remove"; export { readFileSync, readFile } from "./read_file"; |