(bytes)
| 14165 | return; |
| 14166 | } |
| 14167 | const processBody = (bytes) => { |
| 14168 | if (!bytesMatch(bytes, request.integrity)) { |
| 14169 | processBodyError("integrity mismatch"); |
| 14170 | return; |
| 14171 | } |
| 14172 | response.body = safelyExtractBody(bytes)[0]; |
| 14173 | fetchFinale(fetchParams, response); |
| 14174 | }; |
| 14175 | yield fullyReadBody(response.body, processBody, processBodyError); |
| 14176 | } else { |
| 14177 | fetchFinale(fetchParams, response); |
nothing calls this directly
no test coverage detected