mirror of
https://github.com/bspeice/speice.io
synced 2024-12-23 09:08:10 -05:00
3 lines
125 B
TypeScript
3 lines
125 B
TypeScript
|
export default function randomInteger(min: number, max: number) {
|
||
|
return Math.floor(Math.random() * (max - min)) + min;
|
||
|
}
|