Skip to content

Instantly share code, notes, and snippets.

@ralfting
Created August 1, 2019 13:35
Show Gist options
  • Select an option

  • Save ralfting/9d7906dad5af9cf7813e0acbe4cf983c to your computer and use it in GitHub Desktop.

Select an option

Save ralfting/9d7906dad5af9cf7813e0acbe4cf983c to your computer and use it in GitHub Desktop.
export const filterByIds = <T>(items: Object[], ids: string[]): T[] =>
items.filter(item => ids.includes(item.id));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment