00001 /* Built-in method references for those with the same name as other `lodash` methods. */00002 var nativeFloor = Math.floor,
00003 nativeRandom = Math.random;
00004
00014 function baseRandom(lower, upper) {
00015 return lower + nativeFloor(nativeRandom() * (upper - lower + 1));
00016 }
00017
00018 module.exports = baseRandom;