isMatch
_.isMatch(object, properties)
告诉你 properties 中的键和值是否包含在 object 中。
var stooge = {name: 'moe', age: 32};
_.isMatch(stooge, {age: 32});
=> true
_.isMatch(object, properties)
告诉你 properties 中的键和值是否包含在 object 中。
var stooge = {name: 'moe', age: 32};
_.isMatch(stooge, {age: 32});
=> true