mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-13 03:18:07 +01:00
add new core util functions
This commit is contained in:
parent
92cb387ced
commit
fe6009c26d
1 changed files with 21 additions and 0 deletions
|
@ -52,11 +52,32 @@ function turntomins(time) {
|
|||
return finalTime;
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns a random number between min (inclusive) and max (exclusive)
|
||||
*/
|
||||
function getRandomArbitrary(min, max) {
|
||||
return Math.random() * (max - min) + min;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a random integer between min (inclusive) and max (inclusive).
|
||||
* The value is no lower than min (or the next integer greater than min
|
||||
* if min isn't an integer) and no greater than max (or the next integer
|
||||
* lower than max if max isn't an integer).
|
||||
* Using Math.round() will give you a non-uniform distribution!
|
||||
*/
|
||||
function getRandomInt(min, max) {
|
||||
min = Math.ceil(min);
|
||||
max = Math.floor(max);
|
||||
return Math.floor(Math.random() * (max - min + 1)) + min;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
IsJsonString,
|
||||
convert,
|
||||
getFirstLine,
|
||||
getRandomArbitrary,
|
||||
getRandomInt,
|
||||
capitalizeFirstLetter,
|
||||
turntomins
|
||||
};
|
Loading…
Reference in a new issue