(attrs)
| 717 | // Returns a predicate for checking whether an object has a given set of |
| 718 | // `key:value` pairs. |
| 719 | function matcher(attrs) { |
| 720 | attrs = extendOwn({}, attrs); |
| 721 | return function(obj) { |
| 722 | return isMatch(obj, attrs); |
| 723 | }; |
| 724 | } |
| 725 | |
| 726 | // Creates a function that, when passed an object, will traverse that object’s |
| 727 | // properties down the given `path`, specified as an array of keys or indices. |
no test coverage detected
searching dependent graphs…