export function unique(data: T[]): T[] { return Array.from(new Set(data)) }