mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-26 01:56:42 -06: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);
|
||
|
}
|