diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-02-14 12:35:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-14 12:35:38 +0100 |
commit | 201737c518237b271b5bbbd8e2b1fd19ce51fdd9 (patch) | |
tree | 49a4da83ee9c6cdb7a9798f3d6f1430e027913c0 /runtime/ops | |
parent | 2502a37d41e8a7f279af74d7dacc009ee1010f67 (diff) |
feat: stabilize Deno.osUptime() (#17554)
This commit stabilizes "Deno.osUptime()" API. The "--unstable" flag is
no longer required to use this API.
Diffstat (limited to 'runtime/ops')
-rw-r--r-- | runtime/ops/os/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
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<u64, AnyError> { #[op] fn op_os_uptime(state: &mut OpState) -> Result<u64, AnyError> { - super::check_unstable(state, "Deno.osUptime"); os_uptime(state) } |