Comparing version 3.2.7 to 3.3.0
@@ -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": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
125932
4705