Re: [whatwg/fetch] 204 and json (#113)

```js
async function getJSON(response) {
  if (response.status === 204) return '';
  return response.json();
}
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/113#issuecomment-409922366

Received on Thursday, 2 August 2018 13:17:19 UTC