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 4a2b8d3 commit 5be428bCopy full SHA for 5be428b
src/every.js
@@ -1,6 +1,6 @@
1
import asyncForEach from './forEach';
2
3
-export default function asyncSome(arr, fn) {
+export default function asyncEvery(arr, fn) {
4
let resolved;
5
return new Promise((resolve, reject) => {
6
asyncForEach(
src/filter.js
+export default function asyncFilter(arr, fn) {
const result = [];
return asyncForEach(
0 commit comments