@color2k/node
Advanced tools
Comparing version
@@ -254,3 +254,2 @@ 'use strict'; | ||
const a = parseInt(`${normalizedColor[7]}${normalizedColor[8]}`, 16) / 255; | ||
if (a === 0) return [0, 0, 0, 0]; | ||
return [r, g, b, a]; | ||
@@ -271,3 +270,2 @@ } | ||
const a = parseInt(`${normalizedColor[4]}${normalizedColor[4]}`, 16) / 255; | ||
if (a === 0) return [0, 0, 0, 0]; | ||
return [r, g, b, a]; | ||
@@ -292,3 +290,2 @@ } | ||
const a = parseFloat(`${rgbaMatched[4]}`); | ||
if (a === 0) return [0, 0, 0, 0]; | ||
return [r, g, b, a]; | ||
@@ -325,3 +322,2 @@ } | ||
const a = parseFloat(`${hslaMatched[4]}`); | ||
if (a === 0) return [0, 0, 0, 0]; | ||
return [r, g, b, a]; | ||
@@ -328,0 +324,0 @@ } |
{ | ||
"name": "@color2k/node", | ||
"version": "1.0.0-rc.2", | ||
"description": "parses colors to rgba in a node-safe, non-canvas way", | ||
"version": "1.0.0-rc.3", | ||
"description": "parses colors to rgba in a node-safe, non-browser way", | ||
"main": "./index.js", | ||
@@ -17,5 +17,5 @@ "author": { | ||
"dependencies": { | ||
"@color2k/parse-to-rgba": "1.0.0-rc.2" | ||
"@color2k/parse-to-rgba": "1.0.0-rc.3" | ||
}, | ||
"sideEffects": false | ||
} |
Sorry, the diff of this file is not supported yet
36062
-1.72%313
-1.26%+ Added
- Removed