diff options
author | Colin Ihrig <cjihrig@gmail.com> | 2022-10-25 11:21:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-25 11:21:14 -0400 |
commit | 606db35ccbe8e3c1ce93ae943a2f9850558400af (patch) | |
tree | 48123d79982e74a5be8c0679c6f1a7ef9abe2df1 /runtime/ops/os.rs | |
parent | f242d98280a7b261af9bf458498915d973f8d48e (diff) |
feat: stabilize Deno.loadavg() (#16412)
Diffstat (limited to 'runtime/ops/os.rs')
-rw-r--r-- | runtime/ops/os.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/ops/os.rs b/runtime/ops/os.rs index 0c171d710..f774e1f2e 100644 --- a/runtime/ops/os.rs +++ b/runtime/ops/os.rs @@ -160,7 +160,6 @@ fn op_exit(state: &mut OpState) { #[op] fn op_loadavg(state: &mut OpState) -> Result<(f64, f64, f64), AnyError> { - super::check_unstable(state, "Deno.loadavg"); state .borrow_mut::<Permissions>() .sys |