UNPKG

dependency-graph-construction

Version:

A powerful tool to construct dependency graphs for JavaScript and TypeScript projects. Useful for project structure analysis and debugging.

7 lines (6 loc) 134 B
export default class NodeIDGenerator { static ID = 0; static getNextID() { return NodeIDGenerator.ID++; } }