artdaq_node_server  v1_00_07
 All Classes Namespaces Files Variables Pages
_objectToString.js
1 
2 var objectProto = Object.prototype;
3 
9 var nativeObjectToString = objectProto.toString;
10 
18 function objectToString(value) {
19  return nativeObjectToString.call(value);
20 }
21 
22 module.exports = objectToString;