Skip to content

Instantly share code, notes, and snippets.

@kulakowka
Created September 29, 2016 20:08
Show Gist options
  • Save kulakowka/e961009580810f4c1ecbe93d676c9f9c to your computer and use it in GitHub Desktop.
Save kulakowka/e961009580810f4c1ecbe93d676c9f9c to your computer and use it in GitHub Desktop.
promise serial
function runSerial (tasks) {
var result = Promise.resolve()
tasks.forEach(task => {
result = result.then(() => task())
})
return result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment