mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 20:39:08 +01:00
8 lines
182 B
JavaScript
8 lines
182 B
JavaScript
const MAX = Number.MAX_SAFE_INTEGER
|
|
|
|
let idCounter = Math.round(Math.random() * MAX)
|
|
export default function createRandomId () {
|
|
idCounter = idCounter % MAX
|
|
return idCounter++
|
|
}
|