mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
e435c2be15
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
import { sendSync } from "./dispatch_json.ts";
|
|
|
|
export function isatty(rid: number): boolean {
|
|
return sendSync("op_isatty", { rid });
|
|
}
|
|
|
|
export function setRaw(rid: number, mode: boolean): void {
|
|
sendSync("op_set_raw", {
|
|
rid,
|
|
mode
|
|
});
|
|
}
|