- From: Jake Archibald <notifications@github.com>
- Date: Thu, 02 Aug 2018 06:16:55 -0700
- To: whatwg/fetch <fetch@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 2 August 2018 13:17:19 UTC
```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