This commit is contained in:
joaquinelio 2021-03-28 15:02:25 -03:00 committed by GitHub
parent 7b76185892
commit 32eb2f9a86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@ To track download progress, we can use `response.body` property. It's `ReadableS
Unlike `response.text()`, `response.json()` and other methods, `response.body` gives full control over the reading process, and we can count how much is consumed at any moment.
Here's the sketch of code that reads the reponse from `response.body`:
Here's the sketch of code that reads the response from `response.body`:
```js
// instead of response.json() and other methods