diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2023-12-14 15:58:23 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 11:28:23 +0100 |
commit | f2c56dc3d82fbce872c1fc8d014604ad804a1cb7 (patch) | |
tree | a70d594e04500bf3a04601b5534d5de46a0139da | |
parent | 5ace65485f8419ad60ce5e9eb4f181bdfaa920b9 (diff) |
chore(node): remove process.on("disconnect") not implemented warning (#21569)
-rw-r--r-- | ext/node/polyfills/process.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/node/polyfills/process.ts b/ext/node/polyfills/process.ts index 352d46f42..a85351d4b 100644 --- a/ext/node/polyfills/process.ts +++ b/ext/node/polyfills/process.ts @@ -68,7 +68,6 @@ import type { BindingName } from "ext:deno_node/internal_binding/mod.ts"; import { buildAllowedFlags } from "ext:deno_node/internal/process/per_thread.mjs"; const notImplementedEvents = [ - "disconnect", "multipleResolves", "rejectionHandled", "worker", |