Files
lodash/overEvery.js
John-David Dalton 8349627be6 Bump to v4.8.2.
2016-04-04 13:35:30 -07:00

30 lines
669 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|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;
});