diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-09-28 15:36:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-28 15:36:06 +0200 |
commit | b8e3f4c71dae5b43a03e8cfb36e71865e8eeaabf (patch) | |
tree | 369d01d85835aa18548b4892e5a040412c5223fa /runtime/ops | |
parent | 70bc0eb72b01249b4c1ccc92b51bf5c442b3edc9 (diff) |
feat: Stabilize Deno.hostname() API (#15932)
Diffstat (limited to 'runtime/ops')
-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 0e51e3120..0c171d710 100644 --- a/runtime/ops/os.rs +++ b/runtime/ops/os.rs @@ -173,7 +173,6 @@ fn op_loadavg(state: &mut OpState) -> Result<(f64, f64, f64), AnyError> { #[op] fn op_hostname(state: &mut OpState) -> Result<String, AnyError> { - super::check_unstable(state, "Deno.hostname"); state .borrow_mut::<Permissions>() .sys |