mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
Implement ClientRequest.writable
This commit is contained in:
@@ -3031,6 +3031,10 @@ const ClientRequestPrototype = {
|
||||
set aborted(value) {
|
||||
this[abortedSymbol] = value;
|
||||
},
|
||||
|
||||
get writable() {
|
||||
return !this[finishedSymbol];
|
||||
},
|
||||
};
|
||||
|
||||
ClientRequest.prototype = ClientRequestPrototype;
|
||||
|
||||
Reference in New Issue
Block a user