Socket
Socket
Sign inDemoInstall

@fishawack/lab-d3

Package Overview
Dependencies
42
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.1.8 to 2.1.9

2

package.json
{
"name": "@fishawack/lab-d3",
"version": "2.1.8",
"version": "2.1.9",
"description": "Abstract layer built on top of d3",

@@ -5,0 +5,0 @@ "vars": {

@@ -54,3 +54,5 @@ "use strict";

selection.order();
var enter = selection.enter().append("tr").attr('class', function (d) {
var enter = selection.enter().append("tr");
var update = enter.merge(selection);
update.attr('class', function (d) {
if (d.classes) {

@@ -60,3 +62,2 @@ return d.classes.join(' ');

});
var update = enter.merge(selection);
selection.exit().remove();

@@ -63,0 +64,0 @@ var inner = update.selectAll("td").data(function (d) {

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc