Skip to content

Instantly share code, notes, and snippets.

@MKRhere
Last active October 25, 2018 14:37
Show Gist options
  • Save MKRhere/bbda610915e67ceb952cc20a23073565 to your computer and use it in GitHub Desktop.
Save MKRhere/bbda610915e67ceb952cc20a23073565 to your computer and use it in GitHub Desktop.
reducePromise.js
const reduceP = (reducer, initial) => list =>
list.reduce((acc, currentValue, index, list) =>
acc.then(accumulator => reducer(accumulator, currentValue, index, list)),
Promise.resolve(initial)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment