artdaq_node_server
v1_00_07
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Variables
Pages
src
node_modules
xml2js
node_modules
xmlbuilder
node_modules
lodash
_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;
Generated on Wed May 24 2017 17:50:25 for artdaq_node_server by
1.8.5