artdaq_node_server  v1_00_08
 All Classes Namespaces Files Variables Pages
has.js
1 var baseHas = require('./_baseHas'),
2  hasPath = require('./_hasPath');
3 
31 function has(object, path) {
32  return object != null && hasPath(object, path, baseHas);
33 }
34 
35 module.exports = has;