(bytes)
| 60152 | fetchParams.controller.dump = true; |
| 60153 | } |
| 60154 | if (request3.integrity) { |
| 60155 | const processBodyError = (reason) => fetchFinale(fetchParams, makeNetworkError(reason)); |
| 60156 | if (request3.responseTainting === "opaque" || response.body == null) { |
| 60157 | processBodyError(response.error); |
| 60158 | return; |
| 60159 | } |
| 60160 | const processBody = (bytes) => { |
| 60161 | if (!bytesMatch(bytes, request3.integrity)) { |
| 60162 | processBodyError("integrity mismatch"); |
| 60163 | return; |
| 60164 | } |
no test coverage detected
searching dependent graphs…