artdaq_node_server  v1_00_07
 All Classes Namespaces Files Variables Pages
isObject.js
1 
26 function isObject(value) {
27  var type = typeof value;
28  return value != null && (type == 'object' || type == 'function');
29 }
30 
31 module.exports = isObject;