Files
lodash/overEvery.js
John-David Dalton a2438ffc51 Bump to v4.8.0.
2016-04-03 22:48:11 -07:00

30 lines
656 B
JavaScript

define(['./_arrayEvery', './_createOver'], function(arrayEvery, createOver) {
/**
* Creates a function that checks if **all** of the `predicates` return
* truthy when invoked with the arguments it receives.
*
* @static
* @memberOf _
* @since 4.0.0
* @category Util
* @param {...Function} predicates The predicates to check.
* @returns {Function} Returns the new function.
* @example
*
* var func = _.overEvery(Boolean, isFinite);
*
* func('1');
* // => true
*
* func(null);
* // => false
*
* func(NaN);
* // => false
*/
var overEvery = createOver(arrayEvery);
return overEvery;
});