mirror of
https://github.com/stCarolas/setup-maven.git
synced 2025-01-06 07:18:01 +00:00
15 lines
268 B
JavaScript
15 lines
268 B
JavaScript
|
define(function () {
|
||
|
|
||
|
// Return a random integer between `min` and `max` (inclusive).
|
||
|
function random(min, max) {
|
||
|
if (max == null) {
|
||
|
max = min;
|
||
|
min = 0;
|
||
|
}
|
||
|
return min + Math.floor(Math.random() * (max - min + 1));
|
||
|
}
|
||
|
|
||
|
return random;
|
||
|
|
||
|
});
|