mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 23:03:09 +02:00
8 lines
187 B
TypeScript
8 lines
187 B
TypeScript
|
export function countIf<T>(f: (x: T) => boolean, xs: T[]): number {
|
||
|
return xs.filter(f).length;
|
||
|
}
|
||
|
|
||
|
export function count<T>(x: T, xs: T[]): number {
|
||
|
return countIf(y => x === y, xs);
|
||
|
}
|