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
I'm thinking to extend Aigle.parallel functionality as below,
Aigle.parallel
(async () => { const array1 = await Aigle.parallel([ (async () => 1)(), (async () => 2)(), (async () => 3)(), ]); console.log(array1); // [1, 2, 3] const array2 = await Aigle.parallel([ async () => 1, async () => 2, async () => 3, ]); console.log(array2); // [[AsyncFunction], [AsyncFunction], [AsyncFunction]] })(); // ↓ (async () => { const array3 = await Aigle.parallel([ async () => 1, async () => 2, async () => 3, ]); console.log(array3); // [1, 2, 3] })();
Also, I'll add Aigle.series and Aigle.parallelLimit which are smilar to async.series and async.parallelLimit.
Aigle.series
Aigle.parallelLimit
async.series
async.parallelLimit
The text was updated successfully, but these errors were encountered:
Done :)
Sorry, something went wrong.
suguru03
No branches or pull requests
I'm thinking to extend
Aigle.parallel
functionality as below,Also, I'll add
Aigle.series
andAigle.parallelLimit
which are smilar toasync.series
andasync.parallelLimit
.The text was updated successfully, but these errors were encountered: