mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-21 10:39:26 +08:00
a0f00e5017
Co-authored-by: OliverMKing <OliverMKing@users.noreply.github.com>
14 lines
327 B
JavaScript
14 lines
327 B
JavaScript
var extendOwn = require('./extendOwn.js');
|
|
var isMatch = require('./isMatch.js');
|
|
|
|
// Returns a predicate for checking whether an object has a given set of
|
|
// `key:value` pairs.
|
|
function matcher(attrs) {
|
|
attrs = extendOwn({}, attrs);
|
|
return function(obj) {
|
|
return isMatch(obj, attrs);
|
|
};
|
|
}
|
|
|
|
module.exports = matcher;
|