canvas-heatmap
Advanced tools
Comparing version 1.4.7 to 1.4.8
{ | ||
"name": "canvas-heatmap", | ||
"version": "1.4.7", | ||
"version": "1.4.8", | ||
"description": "Interactive heatmap, capable of displaying 1,000,000+ data points using canvas and d3. ", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -14,3 +14,3 @@ export const convertToRGB = (hex) => { | ||
export const convertToHex = (rgb) => { | ||
return hex(rgb[0]) + hex(rgb[1]) + hex(rgb[2]); | ||
return "#" + hex(rgb[0]) + hex(rgb[1]) + hex(rgb[2]); | ||
} | ||
@@ -17,0 +17,0 @@ |
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
58617