artdaq_node_server  v1_00_08
 All Classes Namespaces Files Variables Pages
_baseInRange.js
1 /* Built-in method references for those with the same name as other `lodash` methods. */
2 var nativeMax = Math.max,
3  nativeMin = Math.min;
4 
14 function baseInRange(number, start, end) {
15  return number >= nativeMin(start, end) && number < nativeMax(start, end);
16 }
17 
18 module.exports = baseInRange;