MCPcopy Index your code
hub / github.com/jashkenas/underscore / reject

Function reject

underscore.js:1432–1434  ·  view source on GitHub ↗
(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

Calls 3

filterFunction · 0.70
negateFunction · 0.70
cbFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…