Skip to content

Commit 0010d28

Browse files
committed
Fix #5
1 parent 7aa9342 commit 0010d28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/forEachLimit.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import mapLimit from './mapLimit.mjs'
3535
*/
3636
async function forEachLimit (iterable, iteratee, concurrency) {
3737
await mapLimit(iterable, async (v, i, t) => {
38-
iteratee(v, i, t)
38+
await iteratee(v, i, t)
3939
}, concurrency)
4040
}
4141

0 commit comments

Comments
 (0)