artdaq_node_server  v1_00_07
 All Classes Namespaces Files Variables Pages
matchesProperty.js
1 var baseClone = require('./_baseClone'),
2  baseMatchesProperty = require('./_baseMatchesProperty');
3 
5 var CLONE_DEEP_FLAG = 1;
6 
33 function matchesProperty(path, srcValue) {
34  return baseMatchesProperty(path, baseClone(srcValue, CLONE_DEEP_FLAG));
35 }
36 
37 module.exports = matchesProperty;