Skip to content

Instantly share code, notes, and snippets.

@justerror
Last active July 26, 2021 11:35
Show Gist options
  • Select an option

  • Save justerror/7c31965c2b74aeb255bffe8ff338c80a to your computer and use it in GitHub Desktop.

Select an option

Save justerror/7c31965c2b74aeb255bffe8ff338c80a to your computer and use it in GitHub Desktop.
type Entity<T> = T & { id: number | string };
export const trackById = <T>(index: number, item: Entity<T>) =>
item?.id ?? index;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment