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

sqb

Package Overview
Dependencies
Maintainers
1
Versions
174
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sqb - npm Package Compare versions

Comparing version 0.7.8 to 0.7.9

9

lib/query/query.js

@@ -62,4 +62,3 @@ /* SQB

}
const self = this;
const promise = Promisify.fromCallback(cb => self.execute(options, cb));
const promise = this.execute(options);
return callback ? promise.then(callback) : promise;

@@ -73,3 +72,9 @@ }

}
if (typeof callback !== 'function')
callback = undefined;
const self = this;
if (!callback)
return Promisify.fromCallback(cb => self.execute(options, cb));
if (self.connection)

@@ -76,0 +81,0 @@ return self.connection.execute(this, this._params, options, callback);

{
"name": "sqb",
"description": "Plugin-driven, multi-dialect SQL query builder and Database connection framework for JavaScript",
"version": "0.7.8",
"version": "0.7.9",
"author": "Panates Ltd.",

@@ -6,0 +6,0 @@ "contributors": [

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