Files
k8s-set-context/node_modules/underscore/cjs/matcher.js
github-actions[bot] 52d71d28bd Add node modules and compiled JavaScript from main (#54)
Co-authored-by: Oliver King <oking3@uncc.edu>
2022-06-29 15:41:55 -04:00

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;