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.3 to 3.2.4

8

lib/connect/PreparedQuery.js

@@ -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": [

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