looks-same
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "looks-same", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Pure node.js library for comparing PNG-images, taking into account human color perception.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -16,5 +16,5 @@ 'use strict'; | ||
return { | ||
R: (pixel & 0xFF000000) >> 24, | ||
G: (pixel & 0x00FF0000) >> 16, | ||
B: (pixel & 0x0000FF00) >> 8 | ||
R: (pixel & 0xFF000000) >>> 24, | ||
G: (pixel & 0x00FF0000) >>> 16, | ||
B: (pixel & 0x0000FF00) >>> 8 | ||
}; | ||
@@ -21,0 +21,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
15031