mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-08 00:29:19 +09: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);
|
||
|
}
|