Forked from ryanflorence/gist:927ef8266fdd5525bf8e
Last active
January 8, 2016 21:22
-
-
Save tikotzky/2a84667250d1c713f84e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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