mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix(ext/net): Remove unstable check from op_node_unstable_net_listen_udp (#17207)
The whole point of creating this alternative operation was to allow usage in node, without `--unstable` flag. Introduced and I believe missed in https://github.com/denoland/deno/pull/16520/
This commit is contained in:
parent
bece1ce057
commit
8bdf66c59c
1 changed files with 0 additions and 1 deletions
|
@ -366,7 +366,6 @@ fn op_node_unstable_net_listen_udp<NP>(
|
|||
where
|
||||
NP: NetPermissions + 'static,
|
||||
{
|
||||
super::check_unstable(state, "Deno.listenDatagram");
|
||||
net_listen_udp::<NP>(state, addr, reuse_address)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue