.overSome([predicates=[.identity]])
Creates a function that checks if any of the predicates
return truthy when invoked with the arguments it receives.
Since
4.0.0
Arguments
[predicates=[.identity]]
(…(Function|Function[]))_: The predicates to check.
Returns
(Function): Returns the new function.
Example
var func = _.overSome([Boolean, isFinite]);func('1');// => truefunc(null);// => truefunc(NaN);// => false
当前内容版权归 lodash.com 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 lodash.com .