export type Limiter = (item: T, index: number) => boolean; export const DEFAULT_LIMITER = (item: T, index: number) => true;