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

nodelayout

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodelayout - npm Package Compare versions

Comparing version 1.3.6 to 1.3.8

2

package.json
{
"name": "nodelayout",
"version": "1.3.6",
"version": "1.3.8",
"description": "For node Layout.",

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

@@ -68,3 +68,5 @@ # nodeLayout

source: "0",
target: "1"
target: "1",
startIndex: 0, //0, 1, 2, 3
endIndex: 3
}]

@@ -71,0 +73,0 @@ })

@@ -343,4 +343,4 @@ import * as d3 from "d3";

params.lines.forEach((item, index) => {
const startIndex = item.startIndex || 3
const endIndex = item.endIndex || 1
const startIndex = item.startIndex !== undefined ? item.startIndex : 3
const endIndex = item.endIndex !== undefined ? item.startIndex : 1
connectData.push({

@@ -347,0 +347,0 @@ id: uuid(),

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