mirror of
https://github.com/bspeice/speice.io
synced 2026-09-22 16:50:21 -04:00
0a45267ea1
This reverts commit e2a0ee1d72.
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;
|
|
} |