collectStream(response: Response): Promise<StreamingBody>
Collects a web Response body incrementally via a ReadableStream reader.
Reads each chunk into chunks, decodes the concatenation into text
with TextDecoder. Throws if response.body is null.
response: Response
A streaming web Response
Promise<StreamingBody>
The collected chunks and decoded text