From 3c9046755bc820de334918a2fcb1ff1ecb0e9b08 Mon Sep 17 00:00:00 2001 From: nirholas Date: Tue, 31 Mar 2026 10:24:09 +0000 Subject: [PATCH] =?UTF-8?q?=E2=99=BE=EF=B8=8F=20array.ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/array.ts | 1 + 1 file changed, 1 insertion(+) 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)] } +