Socket
Socket
Sign inDemoInstall

extsprintf

Package Overview
Dependencies
0
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.1 to 1.0.2

11

lib/extsprintf.js

@@ -158,9 +158,10 @@ /*

if (!ex.cause)
return (ret);
if (ex.cause && typeof (ex.cause) === 'function') {
var cex = ex.cause();
if (cex) {
ret += '\nCaused by: ' + dumpException(cex);
}
}
for (ex = ex.cause(); ex; ex = ex.cause ? ex.cause() : null)
ret += '\nCaused by: ' + dumpException(ex);
return (ret);
}
{
"name": "extsprintf",
"version": "1.0.1",
"version": "1.0.2",
"description": "extended POSIX-style sprintf",

@@ -5,0 +5,0 @@ "main": "./lib/extsprintf.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc