mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-15 21:45:45 +01: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);
|
||
|
}
|