From 302590015d4f1b0e988ec345b4883f7cfcef7900 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 24 Oct 2022 17:25:06 +0200 Subject: feat: Stabilize Deno.stdin.setRaw() (#16399) --- runtime/ops/tty.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'runtime') 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 -- cgit v1.2.3