FLUJOS/VISUALIZACION/node_modules/underscore/cjs/matcher.js
2025-11-07 00:06:12 +01:00

13 lines
327 B
JavaScript
Executable file

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;