File size: 300 Bytes
bc20498
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
function responseJson(response) {
  if (!response.ok) throw new Error(response.status + " " + response.statusText);
  if (response.status === 204 || response.status === 205) return;
  return response.json();
}

export default function(input, init) {
  return fetch(input, init).then(responseJson);
}