Skip to content

Instantly share code, notes, and snippets.

@KOBA789
Created August 2, 2015 10:40
Show Gist options
  • Save KOBA789/c9fbbf760693736c8112 to your computer and use it in GitHub Desktop.
Save KOBA789/c9fbbf760693736c8112 to your computer and use it in GitHub Desktop.
[/* item */].map(function (item) {
return function () {
return new Promise(function (resolve, reject) {
/* procedure */
});
};
}).reduce(function (a, b) {
return function () {
return a().then(b);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment