diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-10-24 17:25:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-24 17:25:06 +0200 |
commit | 302590015d4f1b0e988ec345b4883f7cfcef7900 (patch) | |
tree | 5efc860eb5aa7d993300530fe8ac2787d1ce31cf /runtime/ops/tty.rs | |
parent | dbcbf53ab5168ad9c5d6ca8b4c7740db98b270a6 (diff) |
feat: Stabilize Deno.stdin.setRaw() (#16399)
Diffstat (limited to 'runtime/ops/tty.rs')
-rw-r--r-- | runtime/ops/tty.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/ops/tty.rs b/runtime/ops/tty.rs index 07c636e99..f8dae1d26 100644 --- a/runtime/ops/tty.rs +++ b/runtime/ops/tty.rs @@ -53,8 +53,6 @@ fn op_stdin_set_raw( is_raw: bool, cbreak: bool, ) -> Result<(), AnyError> { - super::check_unstable(state, "Deno.stdin.setRaw"); - let rid = 0; // stdin is always rid=0 // From https://github.com/kkawakam/rustyline/blob/master/src/tty/windows.rs |