const getBlob = url => fetch(url) | |
.then(progressHelper(console.log)) // progressHelper used inside the .then() | |
.then(response => response.blob()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment