Created
June 8, 2019 18:57
-
-
Save midnightcodr/ef1ef6a478dab54df916412dc4519fd5 to your computer and use it in GitHub Desktop.
mapSeries without bluebird
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// credit: https://hackernoon.com/functional-javascript-resolving-promises-sequentially-7aac18c4431e | |
const N = 5 | |
const promiseSerial = funcs => | |
funcs.reduce( | |
(promise, func) => | |
promise.then(result => func().then(Array.prototype.concat.bind(result))), | |
Promise.resolve([]) | |
) | |
const sleep = ms => new Promise(resolve => setTimeout(resolve, ms)) | |
const jobs = Array(N) | |
.fill(null) | |
.map((_, i) => i + 1) | |
.map(k => { | |
return () => { | |
return sleep(100).then(() => Promise.resolve(`result from ${k}`)) | |
} | |
}) | |
promiseSerial(jobs).then(data => console.log(data)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment