1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-02 22:24:27 +01:00
metamask-extension/app/scripts/lib/random-id.js

8 lines
182 B
JavaScript
Raw Normal View History

const MAX = Number.MAX_SAFE_INTEGER
2016-11-19 01:27:26 +01:00
let idCounter = Math.round(Math.random() * MAX)
export default function createRandomId () {
idCounter = idCounter % MAX
return idCounter++
}