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

9 lines
224 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
// eslint-disable-next-line no-plusplus
return idCounter++
}