TelegramPWA/src/util/generateIdFor.ts
Alexander Zinchuk 3afcde3217 Initial commit
2021-04-09 14:11:51 +03:00

10 lines
165 B
TypeScript

export default (store: AnyLiteral) => {
let id;
do {
id = String(Math.random()).replace('0.', 'id');
} while (store.hasOwnProperty(id));
return id;
};