(state)
| 5784 | function cloneBody(instance, body) { |
| 5785 | const [out1, out2] = body.stream.tee(); |
| 5786 | body.stream = out1; |
| 5787 | return { |
| 5788 | stream: out2, |
| 5789 | length: body.length, |
| 5790 | source: body.source |
| 5791 | }; |
| 5792 | } |
| 5793 | function throwIfAborted(state) { |