mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
32 lines
647 B
JavaScript
32 lines
647 B
JavaScript
import every from './every.js'
|
|
|
|
/**
|
|
* Creates a function that checks if **all** of the `predicates` return
|
|
* truthy when invoked with the arguments it receives.
|
|
*
|
|
* @since 4.0.0
|
|
* @category Util
|
|
* @param {Function[]} [predicates=[identity]]
|
|
* The predicates to check.
|
|
* @returns {Function} Returns the new function.
|
|
* @example
|
|
*
|
|
* const func = overEvery([Boolean, isFinite])
|
|
*
|
|
* func('1')
|
|
* // => true
|
|
*
|
|
* func(null)
|
|
* // => false
|
|
*
|
|
* func(NaN)
|
|
* // => false
|
|
*/
|
|
function overEvery(iteratees) {
|
|
return function(...args) {
|
|
return every(iteratees, (iteratee) => iteratee.apply(this, args))
|
|
}
|
|
}
|
|
|
|
export default overEvery
|