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

ezzy-logger

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ezzy-logger - npm Package Compare versions

Comparing version 1.0.10 to 1.0.11

2

package.json
{
"name": "ezzy-logger",
"description": "A logging tool for node",
"version": "1.0.10",
"version": "1.0.11",
"author": {

@@ -6,0 +6,0 @@ "name": "Moises Romero",

@@ -169,2 +169,5 @@ const LOG_LEVELS = [

static color(color, msg, bold = false) {
if (!color) {
return msg;
}
if (isBrowser) {

@@ -345,12 +348,12 @@ if (color === "blackBright") {

if (config.title) {
msg += ' ' + config.title;
msg += " " + config.title;
}
if (config.msg) {
msg += ' ' + config.msg;
msg += " " + config.msg;
} else if (config.message) {
msg += ' ' + config.message;
msg += " " + config.message;
}
if (config.timestamp || config.ts) {
msg += ' ' + Date.now().toString();
msg += " " + Date.now().toString();
}

@@ -357,0 +360,0 @@ Logger.console[methodName](

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