mirror of
https://github.com/stCarolas/setup-maven.git
synced 2025-01-04 00:01:42 +00:00
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));
|
|
}
|