color-string
Advanced tools
Comparing version 1.7.3 to 1.7.4
@@ -240,4 +240,4 @@ /* MIT license */ | ||
function hexDouble(num) { | ||
var str = num.toString(16).toUpperCase(); | ||
var str = Math.round(num).toString(16).toUpperCase(); | ||
return (str.length < 2) ? '0' + str : str; | ||
} |
{ | ||
"name": "color-string", | ||
"description": "Parser and generator for CSS color strings", | ||
"version": "1.7.3", | ||
"version": "1.7.4", | ||
"author": "Heather Arthur <fayearthur@gmail.com>", | ||
@@ -6,0 +6,0 @@ "contributors": [ |
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
9980