mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 00:27:50 +00:00
Remove semicolons.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
* @returns {number} Returns the random number.
|
||||
*/
|
||||
function baseRandom(lower, upper) {
|
||||
return lower + Math.floor(Math.random() * (upper - lower + 1));
|
||||
return lower + Math.floor(Math.random() * (upper - lower + 1))
|
||||
}
|
||||
|
||||
export default baseRandom;
|
||||
export default baseRandom
|
||||
|
||||
Reference in New Issue
Block a user