UNPKG

132 BPlain TextView Raw
1export default class RandomIntGenerator {
2 static generate () {
3 return Math.floor(Math.random() * (Math.pow(2, 32) + 1))
4 }
5}