tarjan-graph
Advanced tools
Comparing version
14
index.js
@@ -158,2 +158,16 @@ function Vertex(name, successors) { | ||
clone: function() { | ||
var graph = new Graph(), | ||
self = this; | ||
Object.keys(this.vertices).forEach(function(key) { | ||
var v = self.vertices[key]; | ||
graph.add(v.name, v.successors.map(function(w) { | ||
return w.name; | ||
})); | ||
}); | ||
return graph; | ||
}, | ||
toDot: function() { | ||
@@ -160,0 +174,0 @@ var V = this.vertices, |
{ | ||
"name": "tarjan-graph", | ||
"version": "0.2.0", | ||
"version": "0.3.0", | ||
"license": "MIT", | ||
@@ -10,8 +10,13 @@ | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/tmont/tarjan-graph.git" | ||
}, | ||
"files": [ "index.js" ], | ||
"devDependencies": { | ||
"mocha": "2.3.3", | ||
"mocha": "2.3.4", | ||
"should": "7.1.1" | ||
} | ||
} |
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
6428
5.72%164
7.19%0
-100%