mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-16 13:08:06 +01:00
6 lines
65 B
TypeScript
6 lines
65 B
TypeScript
let _id = 0
|
|
|
|
export function uid () {
|
|
return `nuid-${_id++}`
|
|
}
|