export function removeDublicates<T>(arr: T[]): T[] {
  return Array.from(new Set(arr));
}

Homonyms

cyb/src/utils/list.ts

Graph