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

inv-loggers

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

inv-loggers - npm Package Compare versions

Comparing version 3.3.4 to 3.3.5

9

build/inv-loggers.js

@@ -10,3 +10,3 @@ // Generated by CoffeeScript 1.11.1

log = function(obj, label, color) {
var context;
var context, objCopy;
if (color == null) {

@@ -27,7 +27,8 @@ color = 'cyan';

}
if (obj != null) {
if ((obj != null) && typeof obj === 'object') {
context = obj.context;
delete obj.context;
objCopy = Object.assign({}, obj);
delete objCopy.context;
}
console.log(obj);
console.log(objCopy);
if (context != null) {

@@ -34,0 +35,0 @@ console.log('Context: ', inspect(context, {

{
"name": "inv-loggers",
"version": "3.3.4",
"version": "3.3.5",
"description": "loggers and partial loggers",

@@ -5,0 +5,0 @@ "main": "./build/inv-loggers.js",

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