matcher.js 238 B

12345678910
  1. var extendOwn = require('./extendOwn');
  2. var isMatch = require('./isMatch');
  3. exports = function(attrs) {
  4. attrs = extendOwn({}, attrs);
  5. return function(obj) {
  6. return isMatch(obj, attrs);
  7. };
  8. };
  9. module.exports = exports;