Socket
Socket
Sign inDemoInstall

cytoscape-cose-bilkent

Package Overview
Dependencies
Maintainers
7
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cytoscape-cose-bilkent - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

4

package.json
{
"name": "cytoscape-cose-bilkent",
"version": "3.0.0",
"version": "3.0.1",
"description": "The CoSE layout for Cytoscape.js by Bilkent",

@@ -23,3 +23,3 @@ "main": "src/index.js",

"dependencies": {
"linkedlist": "^1.0.1"
"linkedlist-js": "1.3.0"
},

@@ -26,0 +26,0 @@ "devDependencies": {

@@ -10,3 +10,3 @@ var LGraphObject = require('./LGraphObject');

var Point = require('./Point');
var LinkedList = require('linkedlist');
var List = require('linkedlist-js').List;

@@ -421,3 +421,3 @@ function LGraph(parent, obj2, vGraph) {

var toBeVisited = new LinkedList();
var toBeVisited = new List();
var visited = new HashSet();

@@ -432,5 +432,5 @@ var currentNode = this.nodes[0];

while (toBeVisited.length > 0)
while (!toBeVisited.isEmpty())
{
currentNode = toBeVisited.shift();
currentNode = toBeVisited.shift().value();
visited.add(currentNode);

@@ -437,0 +437,0 @@

Sorry, the diff of this file is too big to display

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