We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Same signature as in Task.parallel() but runs tasks in sequence.
Task.parallel()
The text was updated successfully, but these errors were encountered:
https://github.com/russiann/promise-sequential seems like I'm not the only one who thought about this idea :)
Sorry, something went wrong.
I needed this them I build one function:
function sequenceTasks(tasks) { return Task.chainRec((next, done, pair) => { const [result, rest] = pair; if (rest.length === 0) return Task.of(done(result)); return rest[0].map(x => next([ result.concat(x), rest.slice(1) ])); }, [[], tasks]); }
No branches or pull requests
Same signature as in
Task.parallel()
but runs tasks in sequence.The text was updated successfully, but these errors were encountered: