Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
somebody1234 committed Dec 19, 2024
1 parent 579120d commit 45b2f16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/common/src/iter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function reduce<T, A>(
* it will be consumed.
*/
export function count(it: Iterable<unknown>): number {
return reduce(it, (a) => a + 1, 0)
return reduce(it, a => a + 1, 0)
}

/** An iterable with zero elements. */
Expand Down

0 comments on commit 45b2f16

Please sign in to comment.