From 121d9697a17c66fce2ba974cb0b0f735ca420fce Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Thu, 26 Sep 2024 08:47:29 +0530 Subject: fix(ext/node): fix process.stdin.pause() (#25864) Fixes https://github.com/denoland/deno/issues/25844 --- ext/node/polyfills/net.ts | 1 - 1 file changed, 1 deletion(-) (limited to 'ext/node/polyfills') diff --git a/ext/node/polyfills/net.ts b/ext/node/polyfills/net.ts index 6625ce7b5..48e1d0de8 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 -- cgit v1.2.3