8eb91e89b
1 2 3 4 5 6 7 8 9
const MAX = 1000000000 let idCounter = Math.round( Math.random() * MAX ) function createRandomId() { idCounter = idCounter % MAX return idCounter++ } module.exports = createRandomId