mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-04-20 04:18:05 +00:00
5 lines
141 B
TypeScript
5 lines
141 B
TypeScript
import { globalState } from '../ global-state';
|
|
export function nextId() {
|
|
return (++globalState.guid).toString(36).toLocaleLowerCase();
|
|
}
|