diff --git a/src/js/node/http.ts b/src/js/node/http.ts index 308ab0bc8c..98af67135c 100644 --- a/src/js/node/http.ts +++ b/src/js/node/http.ts @@ -3031,6 +3031,10 @@ const ClientRequestPrototype = { set aborted(value) { this[abortedSymbol] = value; }, + + get writable() { + return !this[finishedSymbol]; + }, }; ClientRequest.prototype = ClientRequestPrototype;