Skip to content

Instantly share code, notes, and snippets.

@pinkhominid
Created June 5, 2019 22:25
Show Gist options
  • Save pinkhominid/8bf92ecf3efa160722a992ab34c98760 to your computer and use it in GitHub Desktop.
Save pinkhominid/8bf92ecf3efa160722a992ab34c98760 to your computer and use it in GitHub Desktop.
fetchJson
function fetchJson(url, options) {
return fetch(url, { cache: 'no-store', ...options })
.then(res => { if (res.ok) return res; throw res; })
.then(res => res.json());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment