Last active
January 23, 2023 11:54
-
-
Save erikunha/cbedba6fbd325f4b3a7aa467406b1f4f to your computer and use it in GitHub Desktop.
Remove duplicates by property (TypeScript)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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