9 lines
222 B
JavaScript
Raw Permalink Normal View History

2025-04-23 09:34:08 +08:00
// 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));
}