(instance, body)
| 5775 | return extractBody(object, keepalive); |
| 5776 | } |
| 5777 | function cloneBody(instance, body) { |
| 5778 | const [out1, out2] = body.stream.tee(); |
| 5779 | body.stream = out1; |
| 5780 | return { |
| 5781 | stream: out2, |
| 5782 | length: body.length, |
| 5783 | source: body.source |
| 5784 | }; |
| 5785 | } |
| 5786 | function throwIfAborted(state) { |
| 5787 | if (state.aborted) { |
| 5788 | throw new DOMException("The operation was aborted.", "AbortError"); |
no outgoing calls
no test coverage detected