Closed amcdnl closed 3 years ago
It would be ideal to extend the overallOrder to support returning only the 'entry' nodes.
overallOrder
var graph = new DepGraph(); graph.addNode('a'); graph.addNode('b'); graph.addNode('c'); graph.addDependency('a', 'b'); graph.addDependency('b', 'c'); graph.entryNodes(); // => ['a']
Request
It would be ideal to extend the
overallOrder
to support returning only the 'entry' nodes.Example