Function overEvery

  • Creates a function that checks if all of the predicates return truthy when invoked with the arguments it receives.

    Type Parameters

    • T

    Parameters

    • iteratees: Predicate<T>[]

    Returns Predicate<T>

    Returns the new function.

    4.0.0

    const func = overEvery([Boolean, isFinite])

    func('1')
    // => true

    func(null)
    // => false

    func(NaN)
    // => false