Bump target for build scripts (#165287)

This commit is contained in:
Matt Bierner
2022-11-03 12:19:54 -07:00
committed by GitHub
parent 640bcd7e70
commit e7e403d83f
12 changed files with 179 additions and 113 deletions

View File

@@ -71,9 +71,10 @@ var graph;
}
graph.newNode = newNode;
class Graph {
_hashFn;
_nodes = {};
constructor(_hashFn) {
this._hashFn = _hashFn;
this._nodes = {};
// empty
}
traverse(start, inwards, callback) {