artdaq_node_server  v1_00_07
 All Classes Namespaces Files Variables Pages
join.js
1 
2 var arrayProto = Array.prototype;
3 
4 /* Built-in method references for those with the same name as other `lodash` methods. */
5 var nativeJoin = arrayProto.join;
6 
22 function join(array, separator) {
23  return array == null ? '' : nativeJoin.call(array, separator);
24 }
25 
26 module.exports = join;