UNPKG

baldrick-broth

Version:
10 lines (8 loc) 196 B
/** * Responsibilities: Generates short ids for task scoping and defines root id. */ export function IdGenerator() { let count = 1; return () => `T${count++}`; } export const rootId = 'R';