forked from actions/setup-maven
9 lines
222 B
JavaScript
9 lines
222 B
JavaScript
|
// Return a random integer between `min` and `max` (inclusive).
|
||
|
export default function random(min, max) {
|
||
|
if (max == null) {
|
||
|
max = min;
|
||
|
min = 0;
|
||
|
}
|
||
|
return min + Math.floor(Math.random() * (max - min + 1));
|
||
|
}
|