summaryrefslogtreecommitdiff
path: root/cli/js/tty.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/tty.ts')
-rw-r--r--cli/js/tty.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/cli/js/tty.ts b/cli/js/tty.ts
deleted file mode 100644
index 2ad44d025..000000000
--- a/cli/js/tty.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import { sendSync } from "./dispatch_json.ts";
-
-/** Check if a given resource is TTY. */
-export function isatty(rid: number): boolean {
- return sendSync("op_isatty", { rid });
-}
-
-/** Set TTY to be under raw mode or not. */
-export function setRaw(rid: number, mode: boolean): void {
- sendSync("op_set_raw", {
- rid,
- mode
- });
-}