This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/js-framework/src/util/uniqueId.ts

4 lines
111 B
TypeScript
Raw Normal View History

2019-07-24 10:14:17 +08:00
let __uniqueId__ = 0
2019-07-17 15:03:31 +08:00
export function uniqueId(prefix: string) {
return `__${prefix}_${__uniqueId__++}__`;
2019-07-16 14:02:55 +08:00
}