Creates a function that checks if all of the predicates return truthy when invoked with the arguments it receives.
predicates
Rest
Returns the new function.
5.11.0
const func = overEvery([Boolean, isFinite])func('1')// => truefunc(null)// => falsefunc(NaN)// => false Copy
const func = overEvery([Boolean, isFinite])func('1')// => truefunc(null)// => falsefunc(NaN)// => false
Creates a function that checks if all of the
predicates
return truthy when invoked with the arguments it receives.