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

canvas-operations

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

canvas-operations - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

4

index.js

@@ -67,7 +67,7 @@ 'use strict';

var x = d3.scale.linear().range([start, width - start]).domain([0 , data.length]);
var y = d3.scale.log().range([start, height - start]).domain(d3.extent(data, function(d) { return d.close; }));
var y = d3.scale.log().range([start, height - start]).domain(d3.extent(data, function(d) { return d; }));
var line = d3.svg.line()
.x(function(d, i) { return x(i); })
.y(function(d) { return y(d.close); })
.y(function(d) { return y(d); })
.interpolate('basis-open');

@@ -74,0 +74,0 @@ ctx.strokeStyle = 'black';

{
"name": "canvas-operations",
"version": "2.0.0",
"version": "2.0.1",
"description": "Used to resize handwritten pixel alpha values for nueral network pattern recognition",

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