/** * Produces a predicate function that confirms the value to the predicate matches * any of the criteria given to anyOf. Criteria may be a string or number to match directly, * a boolean returning function, an iteratee object, or an array of the above. * * @param {...Function|string|number|object|Array} criteria * @returns {predicateOf} * @category Functional */ export default function anyOf(...criteria: (Function | string | number | object | Array)[]): predicateOf;