This commit is contained in:
Ciro Spaciari
2024-09-07 09:09:48 -07:00
parent 4120d400b5
commit 0fc33af53a

View File

@@ -1298,7 +1298,6 @@ ServerResponse.prototype._write = function (chunk, encoding, callback) {
ensureReadableStreamController.$call(this, controller => {
controller.write(chunk);
//TODO: should we flush here?
callback();
});
};
@@ -1322,7 +1321,6 @@ ServerResponse.prototype._writev = function (chunks, callback) {
for (const chunk of chunks) {
controller.write(chunk.chunk);
}
//TODO: should we flush here?
callback();
});
};