Skip to content

Instantly share code, notes, and snippets.

@nch3v
Created April 30, 2018 08:29
Show Gist options
  • Save nch3v/588ce03595675e3a1b0c9bbc26f3c90e to your computer and use it in GitHub Desktop.
Save nch3v/588ce03595675e3a1b0c9bbc26f3c90e to your computer and use it in GitHub Desktop.
Kind of Promise.all using jQuery
function all(arrayOfPromises) {
return jQuery.when.apply(jQuery, arrayOfPromises).then(function() {
return Array.prototype.slice.call(arguments, 0);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment