Skip to content

Commit 60f063e

Browse files
committed
Fix asyncForEach function name
1 parent f8063e4 commit 60f063e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/forEach.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import asyncMap from './map';
22

3-
export default function asyncForEachStrict(arr, fn) {
3+
export default function asyncForEach(arr, fn) {
44
return new Promise((resolve) => {
55
asyncMap(arr, fn).then(() => resolve());
66
});

0 commit comments

Comments
 (0)