Skip to content

Instantly share code, notes, and snippets.

@MD4
Last active July 20, 2016 09:31
Show Gist options
  • Save MD4/1208d8b53d44b564e6d93149939bb1ea to your computer and use it in GitHub Desktop.
Save MD4/1208d8b53d44b564e6d93149939bb1ea to your computer and use it in GitHub Desktop.
🐒 Promise.series simple implementation !
Promise.series = promises => promises
.reduce(
(promise, current) => promise.then(current),
Promise.resolve()
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment