This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
StasisWarden-Legacy/node_modules/es-toolkit/dist/math/random.mjs
T

13 lines
334 B
JavaScript

function random(minimum, maximum) {
if (maximum == null) {
maximum = minimum;
minimum = 0;
}
if (minimum >= maximum) {
throw new Error('Invalid input: The maximum value must be greater than the minimum value.');
}
return Math.random() * (maximum - minimum) + minimum;
}
export { random };