4 lines
147 B
TypeScript
4 lines
147 B
TypeScript
/** 전략 DSL 노드 id — 순환 import 방지를 위해 별도 모듈 */
|
|
let _cnt = 0;
|
|
export const genId = () => `n_${++_cnt}_${Date.now()}`;
|