source: imaps-frontend/node_modules/lodash-es/_baseRandom.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 539 bytes
RevLine 
[d565449]1/* Built-in method references for those with the same name as other `lodash` methods. */
2var nativeFloor = Math.floor,
3 nativeRandom = Math.random;
4
5/**
6 * The base implementation of `_.random` without support for returning
7 * floating-point numbers.
8 *
9 * @private
10 * @param {number} lower The lower bound.
11 * @param {number} upper The upper bound.
12 * @returns {number} Returns the random number.
13 */
14function baseRandom(lower, upper) {
15 return lower + nativeFloor(nativeRandom() * (upper - lower + 1));
16}
17
18export default baseRandom;
Note: See TracBrowser for help on using the repository browser.