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

@dfnivo/scales

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dfnivo/scales - npm Package Compare versions

Comparing version 0.79.9 to 0.79.10

12

dist/ejs/ticks.js

@@ -184,7 +184,11 @@ function _arrayLikeToArray(arr, len) {

}
// specific tick count
if (isInteger(spec)) {
return scale.ticks(spec);
}
return scale.ticks(parseFloat(String(spec)));
}
if (typeof spec === "number") {
var domains = scale.domain();
var stepLength = Math.floor(domains.length / spec);
return domains.filter(function(domain, index) {
return index % stepLength === 0;
});
}
// non linear scale default

@@ -191,0 +195,0 @@ return scale.domain();

{
"name": "@dfnivo/scales",
"version": "0.79.9",
"version": "0.79.10",
"license": "MIT",

@@ -36,3 +36,3 @@ "author": {

},
"gitHead": "259e771b4a8d5824fdbe3f30c8170fcdf1ae19c0"
"gitHead": "fea5c54e395b9b24d8e3fadaea114edafbc48083"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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