This commit is contained in:
Stephen Franceschelli 2019-07-30 13:30:32 -04:00
parent ffce9ce43f
commit a966e84ff9
6749 changed files with 937822 additions and 460 deletions

30
node_modules/lodash/overEvery.js generated vendored Normal file
View file

@ -0,0 +1,30 @@
var arrayEvery = require('./_arrayEvery'),
createOver = require('./_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=[_.identity]]
* 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);
module.exports = overEvery;