artdaq_node_server  v1_00_09
 All Classes Namespaces Files Variables Pages
reverse.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 nativeReverse = arrayProto.reverse;
6 
30 function reverse(array) {
31  return array == null ? array : nativeReverse.call(array);
32 }
33 
34 module.exports = reverse;