diff options
author | Colin Ihrig <cjihrig@gmail.com> | 2022-11-09 07:29:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-09 13:29:24 +0100 |
commit | f946806868ad37624ae96d1b31b882216bb80000 (patch) | |
tree | 83a6bddd2b91dec31b92d2372973a6ac10debe0e /runtime/ops/os/mod.rs | |
parent | 9edcab524fef558abce824731e78f83f7aac28dd (diff) |
feat: stabilize Deno.networkInterfaces() (#16451)
Diffstat (limited to 'runtime/ops/os/mod.rs')
-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 3b4645403..275461cc1 100644 --- a/runtime/ops/os/mod.rs +++ b/runtime/ops/os/mod.rs @@ -190,7 +190,6 @@ fn op_os_release(state: &mut OpState) -> Result<String, AnyError> { fn op_network_interfaces( state: &mut OpState, ) -> Result<Vec<NetworkInterface>, AnyError> { - super::check_unstable(state, "Deno.networkInterfaces"); state .borrow_mut::<Permissions>() .sys |