Socket
Socket
Sign inDemoInstall

color-space

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

color-space - npm Package Compare versions

Comparing version 1.10.0 to 1.11.0

1

index.js

@@ -27,2 +27,3 @@ /**

yccbccrc: require('./yccbccrc'),
jpeg: require('./jpeg'),
lab: require('./lab'),

@@ -29,0 +30,0 @@ labh: require('./labh'),

2

package.json
{
"name": "color-space",
"description": "Color space conversions and data",
"version": "1.10.0",
"version": "1.11.0",
"author": "Deema Yvanow <dfcreative@gmail.com>",

@@ -6,0 +6,0 @@ "keywords": [

@@ -67,3 +67,3 @@ # Color-space [![Build Status](https://travis-ci.org/dfcreative/color-space.svg?branch=master)](https://travis-ci.org/dfcreative/color-space) [![Code Climate](https://codeclimate.com/github/dfcreative/color-space/badges/gpa.svg)](https://codeclimate.com/github/dfcreative/color-space) [![stable](http://badges.github.io/stability-badges/dist/stable.svg)](http://github.com/badges/stability-badges)

* [x] [Y<sub>c</sub>C<sub>bc</sub>C<sub>rc</sub>](https://en.wikipedia.org/wiki/YCbCr#ITU-R_BT.2020_conversion)
* [ ] [JPEG](https://en.wikipedia.org/wiki/YCbCr#JPEG_conversion)
* [x] [JPEG](https://en.wikipedia.org/wiki/YCbCr#JPEG_conversion)
* [ ] [XvYCC](https://en.wikipedia.org/wiki/XvYCC)

@@ -70,0 +70,0 @@ * [ ] [UVW](https://en.wikipedia.org/wiki/CIE_1964_color_space)

@@ -75,4 +75,4 @@ /**

*/
rgb.ycbcr = function(arr, kr, kb) {
rgb.ycbcr = function(arr, kb, kr) {
return ypbpr.ycbcr(rgb.ypbpr(arr, kb, kr));
};

@@ -38,4 +38,4 @@ /**

*/
rgb.yccbccrc = function(arr, kr, kb) {
rgb.yccbccrc = function(arr) {
return rgb.ypbpr(arr, 0.0593, 0.2627);
};
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc