From 2337fca277e84e063549479a63a45820fcead49c Mon Sep 17 00:00:00 2001 From: Brayden Date: Wed, 29 Apr 2020 06:43:34 -0400 Subject: Make Deno.isatty stable (#4937) --- cli/ops/tty.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cli/ops') diff --git a/cli/ops/tty.rs b/cli/ops/tty.rs index 447af9a2d..cf7f62ed8 100644 --- a/cli/ops/tty.rs +++ b/cli/ops/tty.rs @@ -216,11 +216,10 @@ struct IsattyArgs { pub fn op_isatty( isolate: &mut CoreIsolate, - state: &State, + _state: &State, args: Value, _zero_copy: Option, ) -> Result { - state.check_unstable("Deno.isatty"); let args: IsattyArgs = serde_json::from_value(args)?; let rid = args.rid; -- cgit v1.2.3