Skip to content

Instantly share code, notes, and snippets.

@ryanflorence
Last active June 24, 2016 09:08
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save ryanflorence/927ef8266fdd5525bf8e to your computer and use it in GitHub Desktop.
Save ryanflorence/927ef8266fdd5525bf8e to your computer and use it in GitHub Desktop.
function fetchJSON(options, cb) {
fetch(options).
then(res => res.json()).
then(json => cb(null, json), err => cb(err))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment