Comparing version 3.2.3 to 3.2.4
@@ -132,4 +132,8 @@ /* SQB | ||
for (const f of response.fields) { | ||
fields[f.name] = merge({index: i++}, f); | ||
delete fields[f.name].name; | ||
const name = f.name && | ||
(this.options.naming === 'lowercase' ? f.name.toLowerCase() : | ||
(this.options.naming === 'uppercase' ? | ||
f.name.toUpperCase() : f.name)); | ||
fields[name] = merge({index: i++}, f); | ||
delete fields[name].name; | ||
} | ||
@@ -136,0 +140,0 @@ response.fields = fields; |
{ | ||
"name": "sqb", | ||
"description": "Extensible, multi-dialect SQL query builder and Database connection framework for JavaScript", | ||
"version": "3.2.3", | ||
"version": "3.2.4", | ||
"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
125780
4696