(controller, chunk)
| 156 | } |
| 157 | |
| 158 | onResponseData (controller, chunk) { |
| 159 | if (!this.res) { |
| 160 | return |
| 161 | } |
| 162 | |
| 163 | if (this.res.push(chunk) === false) { |
| 164 | controller.pause() |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | onResponseEnd (_controller, trailers) { |
| 169 | if (trailers && typeof trailers === 'object') { |