isMatch_.isMatch(object, properties)
Tells you if the keys and values in properties are contained in object.
var stooge = {name: 'moe', age: 32}; _.isMatch(stooge, {age: 32}); => true
isMatch_.isMatch(object, properties)
Tells you if the keys and values in properties are contained in object.
var stooge = {name: 'moe', age: 32}; _.isMatch(stooge, {age: 32}); => true
Please login to continue.