File size: 234 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 |
function responseBlob(response) {
if (!response.ok) throw new Error(response.status + " " + response.statusText);
return response.blob();
}
export default function(input, init) {
return fetch(input, init).then(responseBlob);
}
|