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

@bencevans/color-array-average

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bencevans/color-array-average - npm Package Compare versions

Comparing version

to
1.0.2

6

index.js

@@ -16,7 +16,7 @@ const averageColor = colors => {

return '#' +
Math.round(totalR).toString(16).padEnd(2, '0') +
Math.round(totalG).toString(16).padEnd(2, '0') +
Math.round(totalB).toString(16).padEnd(2, '0');
Math.round(totalR).toString(16).padStart(2, '0') +
Math.round(totalG).toString(16).padStart(2, '0') +
Math.round(totalB).toString(16).padStart(2, '0');
};
module.exports = averageColor;
{
"name": "@bencevans/color-array-average",
"version": "1.0.1",
"version": "1.0.2",
"description": "Calculate the average color given an array of CSS Hex Colors",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -11,4 +11,5 @@ const test = require('tape');

t.equal(averageColor(['#121212', '#121212']), '#121212');
t.equal(averageColor(['#ff0000', '#ff0000']), '#ff0000')
t.equal(averageColor(['#ff0000', '#ff0000']), '#ff0000');
t.equal(averageColor(['#030303', '#050505']), '#040404');
t.end();
});