mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-02 19:50:44 +05:30
5 lines
95 B
JavaScript
5 lines
95 B
JavaScript
|
let lastId = 0;
|
||
|
export function uniqueId(prefix = 'id') {
|
||
|
return `${prefix}${++lastId}`;
|
||
|
}
|