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

colorful-logging

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

colorful-logging - npm Package Compare versions

Comparing version

to
1.1.2

2

package.json
{
"name": "colorful-logging",
"version": "1.1.1",
"version": "1.1.2",
"description": "A simple logging module with pleasing default colors and optional color arguments.",

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

@@ -5,3 +5,3 @@ import {

module.exports = function processLogLine(value, colorFormatter, bgColorFormatter) {
export function processLogLine(value, colorFormatter, bgColorFormatter) {
let output = value;

@@ -27,2 +27,2 @@ if (output && typeof output === 'object') {

return output;
};
}