(/* error */)
| 205 | buffer = this.read(count); |
| 206 | }, |
| 207 | onDone(/* error */) { |
| 208 | if (this.redirected) { |
| 209 | fetchClientRequest(url, options); |
| 210 | return; |
| 211 | } |
| 212 | resolveBody(buffer ?? new ArrayBuffer); |
| 213 | } |
| 214 | }; |
| 215 | fetchClientRequest(url, options); |
| 216 | }); |
nothing calls this directly
no test coverage detected