Skip to content

Instantly share code, notes, and snippets.

@olopsman
Created July 29, 2024 08:40
Show Gist options
  • Save olopsman/4bfbba25870f5efe195e1ef6d102a79f to your computer and use it in GitHub Desktop.
Save olopsman/4bfbba25870f5efe195e1ef6d102a79f to your computer and use it in GitHub Desktop.
simple react query filter
export function filterItems(items, query) {
query = query.toLowerCase();
return items.filter(item =>
item.name.split(' ').some(word =>
word.toLowerCase().startsWith(query)
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment