Skip to content

Instantly share code, notes, and snippets.

@frivolta
Last active January 10, 2020 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frivolta/bbb5e4255b43ab41862163aafc20e7a6 to your computer and use it in GitHub Desktop.
Save frivolta/bbb5e4255b43ab41862163aafc20e7a6 to your computer and use it in GitHub Desktop.
// Let's define our valueToFilter type
const filterArrayByValue = <T, P extends keyof T>(
items: T[],
propertyName: P,
valueToFilter: T[P] //Partial<T>
): T[] => {
return items.filter(item =>item[propertyName] === valueToFilter);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment