Skip to content

Instantly share code, notes, and snippets.

@tmpaul06
Created July 3, 2017 07:33
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 tmpaul06/76562a0f2a6e2ba975b470da08782db0 to your computer and use it in GitHub Desktop.
Save tmpaul06/76562a0f2a6e2ba975b470da08782db0 to your computer and use it in GitHub Desktop.
Promise constructor
function getSomeJSON(url, callback) {
// AJAX call to get data from server. Accepts callback and calls
// with callback(err, response)
...
}
function fetchJSON(url) {
return new Promise(function (resolve, reject) {
getSomeJSON(url, function (err, response) {
if (err) return reject(err);
resolve(response);
});
});
}
fetchJSON("http://www.google.com").then(..);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment