export const unique = <T>(array: T[]): T[] => Array.from(new Set(array));
