Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

graphlib

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphlib - npm Package Compare versions

Comparing version 0.5.7 to 0.5.8

5

CHANGELOG.md

@@ -0,1 +1,6 @@

v0.5.8
======
* Fixed bug where graph value was not copied correctly with graph.copy().
v0.5.7

@@ -2,0 +7,0 @@ ======

2

lib/BaseGraph.js

@@ -145,3 +145,3 @@ var filter = require("./filter"),

var copy = new this.constructor();
copy.graph(this.graph);
copy.graph(this.graph());
this.eachNode(function(u, value) { copy.addNode(u, value); });

@@ -148,0 +148,0 @@ this.eachEdge(function(e, u, v, value) { copy.addEdge(e, u, v, value); });

@@ -1,1 +0,1 @@

module.exports = '0.5.7';
module.exports = '0.5.8';
{
"name": "graphlib",
"version": "0.5.7",
"version": "0.5.8",
"description": "A directed and undirected multi-graph library",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc