1 var baseClone = require(
'./_baseClone'),
2 baseMatchesProperty = require(
'./_baseMatchesProperty');
5 var CLONE_DEEP_FLAG = 1;
33 function matchesProperty(path, srcValue) {
34 return baseMatchesProperty(path, baseClone(srcValue, CLONE_DEEP_FLAG));
37 module.exports = matchesProperty;