1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 10:49:28 +02:00

Fix build

This commit is contained in:
Chocobozzz 2021-12-17 13:58:07 +01:00
parent c55e3d7227
commit f304a1580b
No known key found for this signature in database
GPG key ID: 583A612D890159BE
16 changed files with 25 additions and 14 deletions

View file

@ -0,0 +1,8 @@
// high excluded
function randomInt (low: number, high: number) {
return Math.floor(Math.random() * (high - low) + low)
}
export {
randomInt
}