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

react-d3-core

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-d3-core - npm Package Compare versions

Comparing version 0.0.12 to 0.0.13

2

package.json
{
"name": "react-d3-core",
"version": "0.0.12",
"version": "0.0.13",
"description": "react chart core component",

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

@@ -128,3 +128,15 @@ "use strict";

_mkScale () {
return scale(this.props);
const{
type
} = this.props;
var func = scale(this.props);
if(type === 'x' || type === 'y') {
// if x, y set scale, not grid
this.props.setScale(type, func);
}
return func;
}

@@ -131,0 +143,0 @@

@@ -32,7 +32,2 @@ export function scale(props) {

if(type === 'x' || type === 'y') {
// if x, y set scale, not grid
props.setScale(type, func);
}
return func;

@@ -39,0 +34,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