]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/core-utils/miscs/miscs.ts
WIP plugins: update plugin
[github/Chocobozzz/PeerTube.git] / shared / core-utils / miscs / miscs.ts
1 function randomInt (low: number, high: number) {
2 return Math.floor(Math.random() * (high - low) + low)
3 }
4
5 export {
6 randomInt
7 }