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