mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
b50fe3184a
fixes #10090
9 lines
216 B
JavaScript
9 lines
216 B
JavaScript
const MAX = Number.MAX_SAFE_INTEGER;
|
|
|
|
let idCounter = Math.round(Math.random() * MAX);
|
|
export default function createRandomId() {
|
|
idCounter %= MAX;
|
|
// eslint-disable-next-line no-plusplus
|
|
return idCounter++;
|
|
}
|