()
| 60540 | } else if (request3.body != null) { |
| 60541 | const processBodyChunk = async function* (bytes) { |
| 60542 | if (isCancelled(fetchParams)) { |
| 60543 | return; |
| 60544 | } |
| 60545 | yield bytes; |
| 60546 | fetchParams.processRequestBodyChunkLength?.(bytes.byteLength); |
| 60547 | }; |
| 60548 | const processEndOfBody = () => { |
| 60549 | if (isCancelled(fetchParams)) { |
| 60550 | return; |
| 60551 | } |
| 60552 | if (fetchParams.processRequestEndOfBody) { |
no test coverage detected
searching dependent graphs…