Skip to content

Commit

Permalink
chore: Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
andreidmt committed Oct 12, 2020
1 parent ee27342 commit 222be85
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const todos = [
```js
/* Predicate fn */
find(
item => item.id === 1,
item => item.id === 1,
todos
)
// => {id: 1, name: "lorem", tagId: 2}
Expand All @@ -73,7 +73,7 @@ find(
findWith(
{
"id": 1
},
},
todos
)
// => {id: 1, name: "lorem", tagId: 2}
Expand All @@ -82,7 +82,7 @@ findWith(
filterWith(
{
"tagId": is // same as `tagId: source => is(source)`
},
},
todos
)
// => [{id: 1, name: "lorem", tagId: 2}]
Expand All @@ -91,7 +91,7 @@ filterWith(
filterWith(
{
"!tagId": is // same as `tagId: not(is)`
},
},
todos
)
// => [
Expand Down

0 comments on commit 222be85

Please sign in to comment.