You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
216 B
9 lines
216 B
4 years ago
|
const MAX = Number.MAX_SAFE_INTEGER;
|
||
8 years ago
|
|
||
4 years ago
|
let idCounter = Math.round(Math.random() * MAX);
|
||
4 years ago
|
export default function createRandomId() {
|
||
4 years ago
|
idCounter %= MAX;
|
||
4 years ago
|
// eslint-disable-next-line no-plusplus
|
||
4 years ago
|
return idCounter++;
|
||
8 years ago
|
}
|