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

js-network-vis

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-network-vis - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

8

index.js

@@ -25,3 +25,3 @@ var d3 = require('d3')

var tick = opts.tick || function (edges, nodes) {
var tick = opts.tick || function (nodes, nodes) {
edges.attr('x1', function(d) { return d.source.x })

@@ -36,3 +36,3 @@ .attr('y1', function(d) { return d.source.y })

opts.tick = function() {
tick(network.edges, network.nodes)
tick(network.nodes, network.edges)
}

@@ -107,2 +107,6 @@

.attr('r', opts.node_size)
if (typeof opts.update === 'function') {
opts.update(network.nodes, network.edges)
}
}

@@ -109,0 +113,0 @@

{
"name": "js-network-vis",
"version": "0.0.4",
"version": "0.0.5",
"description": "visualization tool for network simulations",

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