Function
reject
(obj, predicate, context)
Source from the content-addressed store, hash-verified
| 1430 | |
| 1431 | // Return all the elements for which a truth test fails. |
| 1432 | function reject(obj, predicate, context) { |
| 1433 | return filter(obj, negate(cb(predicate)), context); |
| 1434 | } |
| 1435 | |
| 1436 | // Determine whether all of the elements pass a truth test. |
| 1437 | function every(obj, predicate, context) { |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…