how to retrieve ReadableStream data from res.body in JS
I am fetching data from my backend using fetch function and it returns a readableStream as response’s body. How can I extract the data in that readable stream?
I’ve tries using res.json
method, but it returns undefined.
Here’s my fetch call –