Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | 1x 1x 6x 10x | import { purry } from './purry'; /** * Determines whether any predicate returns true for the input data. * @param data The input data for predicates. * @param fns The list of predicates. * @signature * R.anyPass(data, fns) * @example * const isDivisibleBy3 = (x: number) = x % 3 === 0 * const isDivisibleBy4 = (x: number) = x % 4 === 0 * const fns = [isDivisibleBy3, isDivisibleBy4] * R.anyPass(8, fns) // => true * R.anyPass(11, fns) // => false * @data_first * @category Array */ export function anyPass<T>(data: T, fns: Array<(data: T) => boolean>): boolean; /** * Determines whether any predicate returns true for the input data. * @param fns The list of predicates. * @signature * R.anyPass(fns)(data) * @example * const isDivisibleBy3 = (x: number) = x % 3 === 0 * const isDivisibleBy4 = (x: number) = x % 4 === 0 * const fns = [isDivisibleBy3, isDivisibleBy4] * R.anyPass(fns)(8) // => true * R.anyPass(fns)(11) // => false * @data_last * @category Array */ export function anyPass<T>( fns: Array<(data: T) => boolean> ): (data: T) => boolean; export function anyPass() { return purry(_anyPass, arguments); } function _anyPass(data: any, fns: Array<(data: any) => boolean>) { return fns.some(fn => fn(data)); } |