Why can I not read a body stream multiple times in javascript?
If I do something like: fetch(...) .then((res) => { console.log(res.text(), res.text()) }) I'll get: Failed to execute 'text' on 'Response': body stream already read Why does the readablestream get locked? I don't get the reasoning behind disallowing this