Skip to content

Instantly share code, notes, and snippets.

@lil12t
Created January 2, 2021 12:19
Show Gist options
  • Save lil12t/a4fe09bb2394affbb5c8bea896619b32 to your computer and use it in GitHub Desktop.
Save lil12t/a4fe09bb2394affbb5c8bea896619b32 to your computer and use it in GitHub Desktop.
Wrods search history filter
const alreadySearched = useMemo(
() =>
[...history]
.slice(0, MAX_ITEMS_PER_PAGE)
.filter((element) =>
items.some((item) =>
item.name.toLowerCase().includes(element.toLowerCase()),
),
),
[history, items],
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment