From 790baae673fd60c36f47b9f9b31c9cf132ba3437 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sun, 19 Aug 2018 03:00:34 -0400 Subject: Expose deno.exit() and add test. --- js/deno.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'js') 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"; -- cgit v1.2.3