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

color-rgba

Package Overview
Dependencies
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

color-rgba - npm Package Compare versions

Comparing version

to
3.0.0

.github/workflows/test.js.yml

43

index.js
/** @module color-rgba */
import parse from 'color-parse'
import rgb from 'color-space/rgb.js'
import hsl from 'color-space/hsl.js'
'use strict'
var parse = require('color-parse')
module.exports = function rgba (color) {
export default function rgba(color) {
// template literals
if (Array.isArray(color) && color.raw) color = String.raw.apply(null, arguments)
if (Array.isArray(color) && color.raw) color = String.raw(...arguments)
if (color instanceof Number) color = +color

@@ -18,3 +18,4 @@ var values, i, l

var min = [0,0,0], max = parsed.space[0] === 'h' ? [360,100,100] : [255,255,255]
const min = parsed.space[0] === 'h' ? hsl.min : rgb.min
const max = parsed.space[0] === 'h' ? hsl.max : rgb.max

@@ -26,3 +27,5 @@ values = Array(3)

if (parsed.space[0] === 'h') values = hsl2rgb(values)
if (parsed.space[0] === 'h') {
values = hsl.rgb(values)
}

@@ -33,25 +36,1 @@ values.push(Math.min(Math.max(parsed.alpha, 0), 1))

}
// excerpt from color-space/hsl
function hsl2rgb(hsl) {
var h = hsl[0]/360, s = hsl[1]/100, l = hsl[2]/100, t1, t2, t3, rgb, val, i=0;
if (s === 0) return val = l * 255, [val, val, val];
t2 = l < 0.5 ? l * (1 + s) : l + s - l * s;
t1 = 2 * l - t2;
rgb = [0, 0, 0];
for (;i<3;) {
t3 = h + 1 / 3 * - (i - 1);
t3 < 0 ? t3++ : t3 > 1 && t3--;
val = 6 * t3 < 1 ? t1 + (t2 - t1) * 6 * t3 :
2 * t3 < 1 ? t2 :
3 * t3 < 2 ? t1 + (t2 - t1) * (2 / 3 - t3) * 6 :
t1;
rgb[i++] = val * 255;
}
return rgb;
}
{
"name": "color-rgba",
"version": "2.4.0",
"version": "3.0.0",
"description": "Convert color string (or parseable argument) to RGBA array",
"main": "index.js",
"browser": "index.js",
"module": "./index.mjs",
"type": "module",
"module": "./index.js",
"scripts": {
"test": "node test.mjs && node test.cjs"
"test": "node test.js"
},
"exports": {
"import": "./index.mjs",
"require": "./index.js"
},
"repository": {

@@ -27,3 +24,3 @@ "type": "git",

],
"author": "Dmitry Yv <dfcreative@gmail.com>",
"author": "Dmitry Iv <dfcreative@gmail.com>",
"license": "MIT",

@@ -35,5 +32,5 @@ "bugs": {

"dependencies": {
"color-parse": "^1.4.2",
"color-parse": "^2.0.0",
"color-space": "^2.0.0"
}
}

@@ -1,2 +0,2 @@

# color-rgba [![Build Status](https://travis-ci.org/colorjs/color-rgba.png)](https://travis-ci.org/colorjs/color-rgba) [![size](https://img.shields.io/bundlephobia/minzip/color-rgba?label=size)](https://bundlephobia.com/result?p=color-rgba) ![stable](https://img.shields.io/badge/stability-stable-green)
# color-rgba [![test](https://github.com/colorjs/color-rgba/actions/workflows/test.js.yml/badge.svg)](https://github.com/colorjs/color-rgba/actions/workflows/test.js.yml) [![size](https://img.shields.io/bundlephobia/minzip/color-rgba?label=size)](https://bundlephobia.com/result?p=color-rgba) ![stable](https://img.shields.io/badge/stability-stable-green)

@@ -16,3 +16,3 @@ Convert color string to array with rgba channel values: `"rgba(127,127,127,.1)"` → `[127,127,127,.1]`.

rgba('hsla(109, 50%, 50%, .75)') // [87.125, 191.25, 63.75, .75]
rgba`rgb(80 120, 160 / 50%)` // [80, 120, 160, .5]
rgba`rgb(80 120 160 / 50%)` // [80, 120, 160, .5]
```

@@ -19,0 +19,0 @@

Sorry, the diff of this file is not supported yet