From 222be852c3aa6c1f24c6eda95b35588f8f582904 Mon Sep 17 00:00:00 2001 From: Andrei Dumitrescu <5057797+andreidmt@users.noreply.github.com> Date: Mon, 12 Oct 2020 15:48:00 +0200 Subject: [PATCH] chore: Fix lint errors --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f82acbb..58f1c32 100644 --- a/README.md +++ b/README.md @@ -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} @@ -73,7 +73,7 @@ find( findWith( { "id": 1 - }, + }, todos ) // => {id: 1, name: "lorem", tagId: 2} @@ -82,7 +82,7 @@ findWith( filterWith( { "tagId": is // same as `tagId: source => is(source)` - }, + }, todos ) // => [{id: 1, name: "lorem", tagId: 2}] @@ -91,7 +91,7 @@ filterWith( filterWith( { "!tagId": is // same as `tagId: not(is)` - }, + }, todos ) // => [