2020-07-14 10:14:48 +08:00

5 lines
141 B
TypeScript

import { globalState } from '../ global-state';
export function nextId() {
return (++globalState.guid).toString(36).toLocaleLowerCase();
}