erratic-gate/src/common/lang/arrays/helpers/removeDuplicates.ts
2019-08-04 00:55:22 +03:00

7 lines
198 B
TypeScript

/**
* Remoes al lduplicates from array
*
* @param array The array to remove duplicates from
*/
export const removeDuplicates = <T>(array: T[]): T[] =>
Array.from(new Set<T>(array).values())