Skip to content

Instantly share code, notes, and snippets.

@cdaz5
Last active August 3, 2017 17:19
Show Gist options
  • Save cdaz5/c759e3ce584caf0547e649e93a1e7687 to your computer and use it in GitHub Desktop.
Save cdaz5/c759e3ce584caf0547e649e93a1e7687 to your computer and use it in GitHub Desktop.
Fuzzy Search Includes Version
sortBySearchTerm = () => {
return this.props.transactions.filter(transaction => {
return transaction.category.includes(this.props.searchTerm) || transaction.description.includes(this.props.searchTerm)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment