New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More →

tarjan-graph

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tarjan-graph - npm Package Compare versions

Comparing version

to
0.3.0

@@ -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"
}
}