blob.js 234 B

12345678
  1. function responseBlob(response) {
  2. if (!response.ok) throw new Error(response.status + " " + response.statusText);
  3. return response.blob();
  4. }
  5. export default function(input, init) {
  6. return fetch(input, init).then(responseBlob);
  7. }