(obj, predicate, context)
| 1395 | |
| 1396 | // Return all the elements for which a truth test fails. |
| 1397 | function reject(obj, predicate, context) { |
| 1398 | return filter(obj, negate(cb(predicate)), context); |
| 1399 | } |
| 1400 | |
| 1401 | // Determine whether all of the elements pass a truth test. |
| 1402 | function every(obj, predicate, context) { |