diff --git a/src/utils/array.ts b/src/utils/array.ts index 909fcd2..bf5f626 100644 --- a/src/utils/array.ts +++ b/src/utils/array.ts @@ -11,3 +11,4 @@ export function count(arr: readonly T[], pred: (x: T) => unknown): number { export function uniq(xs: Iterable): T[] { return [...new Set(xs)] } +