We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aa9342 commit 0010d28Copy full SHA for 0010d28
src/forEachLimit.mjs
@@ -35,7 +35,7 @@ import mapLimit from './mapLimit.mjs'
35
*/
36
async function forEachLimit (iterable, iteratee, concurrency) {
37
await mapLimit(iterable, async (v, i, t) => {
38
- iteratee(v, i, t)
+ await iteratee(v, i, t)
39
}, concurrency)
40
}
41
0 commit comments