svg2canvas
Advanced tools
Comparing version 0.0.4 to 0.0.5
@@ -31,2 +31,4 @@ declare type Style = { | ||
private children; | ||
readonly width: number; | ||
readonly height: number; | ||
private invWidth; | ||
@@ -33,0 +35,0 @@ private invHeight; |
@@ -162,2 +162,4 @@ var __spreadArrays = (this && this.__spreadArrays) || function () { | ||
this.children = []; | ||
this.width = width; | ||
this.height = height; | ||
this.invWidth = 1.0 / width; | ||
@@ -164,0 +166,0 @@ this.invHeight = 1.0 / height; |
{ | ||
"name": "svg2canvas", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "Library to allow batching and rendering of SVGs onto the canvas EFFICIENTLY. Currently only compatible w/ simple geometry.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
49417
365