(controller, chunk)
| 431 | } |
| 432 | |
| 433 | onResponseData (controller, chunk) { |
| 434 | if (this.#writeStream?.write(chunk) === false) { |
| 435 | controller.pause() |
| 436 | } |
| 437 | |
| 438 | this.#handler.onResponseData?.(controller, chunk) |
| 439 | } |
| 440 | |
| 441 | onResponseEnd (controller, trailers) { |
| 442 | this.#writeStream?.end() |
nothing calls this directly
no test coverage detected