1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- var baseClone = require('./_baseClone'),
- baseMatchesProperty = require('./_baseMatchesProperty');
- var CLONE_DEEP_FLAG = 1;
- function matchesProperty(path, srcValue) {
- return baseMatchesProperty(path, baseClone(srcValue, CLONE_DEEP_FLAG));
- }
- module.exports = matchesProperty;
|