10 lines
165 B
TypeScript
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;
|
|
};
|