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 3.2.7 to 3.3.0

2

lib/connect/PreparedQuery.js

@@ -64,3 +64,3 @@ /* SQB

let o = merge.clone(this.pool.config);
o.values = query.values;
o.values = options.values;
o.prettyPrint = options.prettyPrint != null ? options.prettyPrint :

@@ -67,0 +67,0 @@ (defaults.prettyPrint != null ? defaults.prettyPrint : true);

@@ -37,2 +37,3 @@ /* SQB

this._action = null;
this._values = null;
}

@@ -39,0 +40,0 @@

@@ -38,2 +38,11 @@ /* SQB

/**
* Returns operator type
* @public
* @return {string}
*/
get operatorType() {
return '';
}
/**
* Adds operator(s) to item list

@@ -75,3 +84,3 @@ *

const s = Serializable.joinArray(arr, ' ' + this.operatorType);
return (s.indexOf('n') > 0) ? s.replace('\n', '\n\t') + '\b' : s;
return (s.indexOf('\n') > 0) ? s.replace('\n', '\n\t') + '\b' : s;
});

@@ -78,0 +87,0 @@ }

{
"name": "sqb",
"description": "Extensible, multi-dialect SQL query builder and Database connection framework for JavaScript",
"version": "3.2.7",
"version": "3.3.0",
"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