(obj, attrs)
| 1488 | // Convenience version of a common use case of `_.filter`: selecting only |
| 1489 | // objects containing specific `key:value` pairs. |
| 1490 | function where(obj, attrs) { |
| 1491 | return filter(obj, matcher(attrs)); |
| 1492 | } |
| 1493 | |
| 1494 | // Return the maximum element (or element-based computation). |
| 1495 | function max(obj, iteratee, context) { |