summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-08-19 03:00:34 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-08-21 18:34:56 -0400
commit790baae673fd60c36f47b9f9b31c9cf132ba3437 (patch)
tree8ffd1f1932e8fe0144e5920551449ac1417c68e9 /js
parent18d495c7d17cf3fce3835e732094d058f51eddaa (diff)
Expose deno.exit() and add test.
Diffstat (limited to 'js')
-rw-r--r--js/deno.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/js/deno.ts b/js/deno.ts
index f281ebefa..060b2d526 100644
--- a/js/deno.ts
+++ b/js/deno.ts
@@ -1,6 +1,4 @@
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// Public deno module.
-// TODO get rid of deno.d.ts
-// export { pub, sub } from "./dispatch";
-export { readFileSync } from "./os";
+export { exit, readFileSync } from "./os";
export { libdeno } from "./globals";