7fife-backend/node_modules/underscore/cjs/matcher.js

14 lines
327 B
JavaScript
Raw Permalink Normal View History

2024-03-07 13:01:44 +00:00
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;