mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
10 lines
198 B
JavaScript
10 lines
198 B
JavaScript
const MAX = Number.MAX_SAFE_INTEGER
|
|
|
|
let idCounter = Math.round(Math.random() * MAX)
|
|
function createRandomId () {
|
|
idCounter = idCounter % MAX
|
|
return idCounter++
|
|
}
|
|
|
|
export default createRandomId
|