New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

nor-debug

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

nor-debug - npm Package Compare versions

Comparing version
0.1.52
to
0.1.53
+1
-1
package.json
{
"name": "nor-debug",
"version": "0.1.52",
"version": "0.1.53",
"description": "Debug helpers for Node.js apps",

@@ -5,0 +5,0 @@ "main": "src/debug.js",

@@ -441,7 +441,13 @@ /** Helpers for JavaScript debuging

var extra = Object.keys(x).filter(function(key) {
return (key !== 'stack') && (x[key] !== undefined);
}).map(function(key) {
return '> ' + key + ' = ' + inspect_and_trim(x[key]);
}).join('\n');
if(message === ''+x) {
return ''+x.stack;
return ''+x.stack + '\n' + extra;
}
return '' + x + '\n' + x.stack;
return '' + x + '\n' + x.stack + '\n' + extra;
}

@@ -448,0 +454,0 @@