Files
goldenChart/frontend/src/utils/strategyNodeIds.ts
T
2026-06-11 22:53:19 +09:00

4 lines
147 B
TypeScript

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