Skip to content

Instantly share code, notes, and snippets.

@erikunha
Last active January 23, 2023 11:54
Show Gist options
  • Save erikunha/cbedba6fbd325f4b3a7aa467406b1f4f to your computer and use it in GitHub Desktop.
Save erikunha/cbedba6fbd325f4b3a7aa467406b1f4f to your computer and use it in GitHub Desktop.
Remove duplicates by property (TypeScript)
/**
* Remove duplicates by property
* @param {string} property - List property identifier.
* @param {T[]} oldList - Old list
* @param {T[]} newList - New list
* @returns {T[]} Returns a new list without duplicates by property passed
*/
export const removeDuplicatesByProperty = <T>(
property: keyof T,
oldList: T[] = [],
newList: T[] = []
): T[] => {
const impureList = [...oldList, ...newList];
const purifiedListMap = new Map(
impureList.map((value) => [value[property], value])
);
return Array.from(purifiedListMap.values());
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment