Socket
Socket
Sign inDemoInstall

@fishawack/lab-d3

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fishawack/lab-d3 - npm Package Compare versions

Comparing version 2.6.3 to 2.6.4

2

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

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

@@ -233,2 +233,5 @@ ## Background

### 2.6.4
* Can pass function into structure calls
### 2.6.3

@@ -235,0 +238,0 @@ * format and formatKeys no longer inserts the missing matched property into the strings if they aren't found

@@ -93,3 +93,9 @@ "use strict";

return Shared.formatKeys(d && d.structure || att[type].structure, textObject);
var structure = d && d.structure || att[type].structure;
if (typeof structure === "function") {
structure = structure(value, d, att);
}
return Shared.formatKeys(structure, textObject);
},

@@ -96,0 +102,0 @@ formatKeys: function formatKeys(format) {

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