Function someValues

  • Checks if predicate returns truthy for any element of object. Iteration is stopped once predicate returns truthy. The predicate is invoked with three arguments: (value, key, object).

    Type Parameters

    • T = any

    Parameters

    • object: Record<string, T>

      The object to iterate over.

    • predicate: RecordIteratee<T, boolean>

      The function invoked per iteration.

    Returns boolean

    Returns true if any element passes the predicate check, else false.

    Since

    5.11.0

    Example

    someValues({ 'a': 0, 'b': 'yes', 'c': false }, Boolean)
    // => true