(controller, chunk)
| 445 | } |
| 446 | |
| 447 | onResponseData (controller, chunk) { |
| 448 | if (this.#writeStream?.write(chunk) === false) { |
| 449 | controller.pause() |
| 450 | } |
| 451 | |
| 452 | this.#handler.onResponseData?.(controller, chunk) |
| 453 | } |
| 454 | |
| 455 | onResponseEnd (controller, trailers) { |
| 456 | this.#writeStream?.end() |
nothing calls this directly
no test coverage detected