run-groups
v4.0.0
Published
Runs a sequence of concurrent task groups
Downloads
186,533
Readme
run-groups
Runs a sequence of concurrent task groups
Installation
<npm|yarn|pnpm> add run-groupsUsage
import runGroups from 'run-groups'
await runGroups(10, [
[
async () => {},
async () => {},
],
[
async () => {},
async () => {},
async () => {},
],
[
async () => {},
],
])