diff options
author | Dmitry Sharshakov <sh7dm@outlook.com> | 2019-02-03 06:05:30 +0300 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-02 22:05:30 -0500 |
commit | 181b03273c4c9282d8176953d68713e37b50294b (patch) | |
tree | abdc1d696c889739b9d3ac254af7fa6f673fcc68 /js/deno.ts | |
parent | 1d48e025d341c9295f7ee02039eaa6c00a720344 (diff) |
Add isTTY function (#1622)
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/deno.ts b/js/deno.ts index 1cc0a33d1..42bd38013 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -1,7 +1,7 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. // Public deno module. -export { pid, env, exit } from "./os"; +export { pid, env, exit, isTTY } from "./os"; export { chdir, cwd } from "./dir"; export { File, |