1
0
Fork 0
peertube/shared/core-utils/miscs/miscs.ts
2019-04-24 16:26:25 +02:00

7 lines
131 B
TypeScript

function randomInt (low: number, high: number) {
return Math.floor(Math.random() * (high - low) + low)
}
export {
randomInt
}