Skip to content

Instantly share code, notes, and snippets.

@tikotzky
Forked from ryanflorence/gist:927ef8266fdd5525bf8e
Last active January 8, 2016 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tikotzky/2a84667250d1c713f84e to your computer and use it in GitHub Desktop.
Save tikotzky/2a84667250d1c713f84e to your computer and use it in GitHub Desktop.
function fetchJSON(options, cb) {
const wrappedCb = (...args) => setTimeout(() => cb(...args), 0);
fetch(options).
then(res => res.json()).
then(json => wrappedCb(null, json), err => wrappedCb(err))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment