mirror of
https://github.com/oven-sh/bun
synced 2026-02-16 22:01:47 +00:00
noop
This commit is contained in:
@@ -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();
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user