From 201737c518237b271b5bbbd8e2b1fd19ce51fdd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 14 Feb 2023 12:35:38 +0100 Subject: feat: stabilize Deno.osUptime() (#17554) This commit stabilizes "Deno.osUptime()" API. The "--unstable" flag is no longer required to use this API. --- runtime/ops/os/mod.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'runtime/ops') diff --git a/runtime/ops/os/mod.rs b/runtime/ops/os/mod.rs index f970c318b..020634c32 100644 --- a/runtime/ops/os/mod.rs +++ b/runtime/ops/os/mod.rs @@ -419,7 +419,6 @@ fn os_uptime(state: &mut OpState) -> Result { #[op] fn op_os_uptime(state: &mut OpState) -> Result { - super::check_unstable(state, "Deno.osUptime"); os_uptime(state) } -- cgit v1.2.3