Skip to content

Commit

Permalink
test: fake changes
Browse files Browse the repository at this point in the history
  • Loading branch information
scolladon committed Apr 10, 2022
1 parent 543342b commit 2c60698
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/utils/asyncFilter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
module.exports = async (arr, predicate) =>
arr.reduce(
async (memo, e) => ((await predicate(e)) ? [...(await memo), e] : memo),
[]
async (memo, e) => ((await predicate(e)) ? [...(await memo), e] : memo),[]
)

0 comments on commit 2c60698

Please sign in to comment.