(controller, chunk)
| 194 | } |
| 195 | |
| 196 | onResponseData (controller, chunk) { |
| 197 | const { res } = this |
| 198 | |
| 199 | if (!res) { |
| 200 | return |
| 201 | } |
| 202 | |
| 203 | if (res.write(chunk) === false) { |
| 204 | controller.pause() |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | onResponseEnd (_controller, trailers) { |
| 209 | const { res } = this |