BTW., this is an _awesome_ tutorial!
This commit is contained in:
Mike Taylor 2019-02-08 13:20:48 +00:00 committed by GitHub
parent d11abcea88
commit 6bf2aec61c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ Promise.all(urls.map(url => fetch(url)))
});
```
The problem is that if any of requests fails, then `Promise.all` rejects with the error, and we loose results of all the other requests.
The problem is that if any of requests fails, then `Promise.all` rejects with the error, and we lose results of all the other requests.
That's not good.