inverse of anyOf
Checks if predicate returns falsey for none of the elements of collection. Iteration is stopped once predicate returns truthy. The predicate is invoked with three arguments: (value, index|key, collection).
The collection to iterate over.
Optional
The function invoked per iteration.
Returns true if none of the elements pass the predicate check, else false.
_.every
inverse of anyOf
Checks if predicate returns falsey for none of the elements of collection. Iteration is stopped once predicate returns truthy. The predicate is invoked with three arguments: (value, index|key, collection).