mirror of
https://github.com/MisskeyIO/misskey
synced 2024-12-18 00:29:00 +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);
|
||
|
}
|