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 d59a496 commit 36d9d7fCopy full SHA for 36d9d7f
src/every.js
@@ -1,6 +1,6 @@
1
import asyncForEach from './forEach';
2
3
-export default async function asyncSome(arr, fn) {
+export default function asyncSome(arr, fn) {
4
return new Promise((resolve) => {
5
// eslint-disable-next-line no-shadow
6
asyncForEach(arr, async (cur, idx, arr) => {
src/some.js
0 commit comments