Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@uiw/color-convert

Package Overview
Dependencies
Maintainers
2
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uiw/color-convert - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

2

cjs/index.js

@@ -287,3 +287,3 @@ "use strict";

b: b,
a: a ? a / RGB_MAX : 1
a: (a !== null && a !== void 0 ? a : 255) / RGB_MAX
};

@@ -290,0 +290,0 @@ };

@@ -211,3 +211,3 @@ import _extends from "@babel/runtime/helpers/extends";

b,
a: a ? a / RGB_MAX : 1
a: (a != null ? a : 255) / RGB_MAX
};

@@ -214,0 +214,0 @@ };

{
"name": "@uiw/color-convert",
"version": "1.3.1",
"version": "1.3.2",
"description": "Color Convert",

@@ -5,0 +5,0 @@ "author": "Kenny Wong <wowohoo@qq.com>",

@@ -208,3 +208,3 @@ import { validHex } from './utils';

b,
a: a ? a / RGB_MAX : 1,
a: (a ?? 255) / RGB_MAX,
};

@@ -211,0 +211,0 @@ };

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