From 579cd3852213a444cd7f952367a78e09644dcef6 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Wed, 25 Sep 2024 18:42:14 +0530 Subject: [PATCH] fix(ext/node): fix process.stdin.pause() Fixes https://github.com/denoland/deno/issues/25844 --- ext/node/polyfills/net.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/node/polyfills/net.ts b/ext/node/polyfills/net.ts index 6625ce7b50044e..48e1d0de8778f7 100644 --- a/ext/node/polyfills/net.ts +++ b/ext/node/polyfills/net.ts @@ -951,7 +951,6 @@ export class Socket extends Duplex { */ override pause(): this { if ( - this[kBuffer] && !this.connecting && this._handle && this._handle.reading