diff --git a/app/common/src/iter.ts b/app/common/src/iter.ts index edd2b76b5b45..7329fe8b2e1d 100644 --- a/app/common/src/iter.ts +++ b/app/common/src/iter.ts @@ -23,7 +23,7 @@ export function reduce( * it will be consumed. */ export function count(it: Iterable): number { - return reduce(it, (a) => a + 1, 0) + return reduce(it, a => a + 1, 0) } /** An iterable with zero elements. */