mirror of
https://github.com/kou029w/pucchinglgl.git
synced 2025-01-19 00:27:59 +00:00
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
|
const { floor, random } = Math;
|
||
|
|
||
|
/** 範囲 [0, high] のランダムな整数を返します */
|
||
|
function randomInt(high: number) {
|
||
|
return floor(random() * (high + 1));
|
||
|
}
|
||
|
|
||
|
export default randomInt;
|