New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

larvitdb

Package Overview
Dependencies
Maintainers
1
Versions
164
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

larvitdb - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

6

larvitdb.js

@@ -30,6 +30,8 @@ 'use strict';

log.debug('larvitdb: Running SQL: "' + sql + '"');
pool.query(sql, function(err, rows, rowFields) {
// We log and handle plain database errors in a unified matter
if (err) {
err.sql = sql;
err.sql = sql;
log.error(err.message, err);

@@ -43,2 +45,4 @@ callback(err);

} else {
log.debug('larvitdb: Running SQL: "' + sql + '" with dbFields = ' + JSON.stringify(dbFields));
pool.query(sql, dbFields, function(err, rows, rowFields) {

@@ -45,0 +49,0 @@ // We log and handle plain database errors in a unified matter

4

package.json

@@ -27,3 +27,3 @@ {

},
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",

@@ -39,2 +39,2 @@ "bugs": {

]
}
}
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