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

devnull

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

devnull - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

2

package.json
{
"name": "devnull"
, "version": "0.0.8"
, "version": "0.0.9"
, "description": "A simple logger with automatic function detection."

@@ -5,0 +5,0 @@ , "homepage": "http://observer.no.de"

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

// optional logging
if (namespace) log.namespace = namespace;
if (namespace && namespace.length) log.namespace = namespace;

@@ -153,0 +153,0 @@ // unable to log, so we emit the to-log object so the user can handle it off

@@ -52,5 +52,3 @@ "use strict";

+ this.logger.prefix[type]
+ ' ('
+ (namespace ? namespace.join('/') : '/')
+ ') '
+ (namespace && namespace.length ? (' (' + namespace.join('/') + ') ') : ' ')
+ this.logger.format.apply(this, args)

@@ -57,0 +55,0 @@ + '\n';

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