mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2026-09-03 20:53:09 -05:00
9 lines
148 B
TypeScript
9 lines
148 B
TypeScript
// high excluded
|
|
function randomInt (low: number, high: number) {
|
|
return Math.floor(Math.random() * (high - low) + low)
|
|
}
|
|
|
|
export {
|
|
randomInt
|
|
}
|