39e0a33bb
f229d3244
d6286cd13
1
2
3 4
5 6 7 8 9
const MAX = Number.MAX_SAFE_INTEGER let idCounter = Math.round(Math.random() * MAX) function createRandomId () { idCounter = idCounter % MAX return idCounter++ } module.exports = createRandomId