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

@voliware/logger

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@voliware/logger - npm Package Compare versions

Comparing version 1.4.3 to 1.4.4

2

build.js
const NodeBuild = require('@voliware/node-build');
const version = "1.4.3";
const version = require('./package.json').version;
const name = "Logger";

@@ -4,0 +4,0 @@ const input = './src/logger.js';

{
"name": "@voliware/logger",
"version": "1.4.3",
"version": "1.4.4",
"description": "A tiny Javascript logger with levels and several options. Supports Node and all modern Browsers",

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

@@ -251,3 +251,6 @@ /**

let msg = this.createMessage(message, level);
let msg = (typeof message === "string")
? this.createMessage(message, level)
: message;
return this.logMessage(msg);

@@ -254,0 +257,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