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 f8063e4 commit 60f063eCopy full SHA for 60f063e
src/forEach.js
@@ -1,6 +1,6 @@
1
import asyncMap from './map';
2
3
-export default function asyncForEachStrict(arr, fn) {
+export default function asyncForEach(arr, fn) {
4
return new Promise((resolve) => {
5
asyncMap(arr, fn).then(() => resolve());
6
});
0 commit comments