(arr: T[])
| 2 | * Removes duplicates from specified array |
| 3 | */ |
| 4 | export function unique<T>(arr: T[]): T[] { |
| 5 | return arr.filter(uniqueFilter); |
| 6 | } |
| 7 | |
| 8 | /** |
| 9 | * Returns true for items, that only exists once on an array |
no outgoing calls
no test coverage detected
searching dependent graphs…