mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
310b15ba4a
See [`no-plusplus`](https://eslint.org/docs/rules/no-plusplus) for more information. This change enables `no-plusplus` and fixes the issues raised by the rule.
9 lines
224 B
JavaScript
9 lines
224 B
JavaScript
const MAX = Number.MAX_SAFE_INTEGER
|
|
|
|
let idCounter = Math.round(Math.random() * MAX)
|
|
export default function createRandomId () {
|
|
idCounter = idCounter % MAX
|
|
// eslint-disable-next-line no-plusplus
|
|
return idCounter++
|
|
}
|