New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@color2k/node

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@color2k/node - npm Package Compare versions

Comparing version

to
1.0.0-rc.3

4

index.js

@@ -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 @@ }

6

package.json
{
"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