00001 var baseClone = require('./_baseClone'),
00002 baseMatchesProperty = require('./_baseMatchesProperty');
00003
00005 var CLONE_DEEP_FLAG = 1;
00006
00033 function matchesProperty(path, srcValue) {
00034 return baseMatchesProperty(path, baseClone(srcValue, CLONE_DEEP_FLAG));
00035 }
00036
00037 module.exports = matchesProperty;