7fife-backend/node_modules/underscore/modules/random.js

9 lines
222 B
JavaScript
Raw Permalink Normal View History

2024-03-07 13:01:44 +00: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));
}