Socket
Socket
Sign inDemoInstall

jssql

Package Overview
Dependencies
11
Maintainers
2
Versions
53
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.5.9 to 1.5.10

2

package.json
{
"name": "jssql",
"description": "A simple javascript MySQL library",
"version": "1.5.9",
"version": "1.5.10",
"author": "Avery Durrant <avery@frostbyte.co>",

@@ -6,0 +6,0 @@ "license": "MIT",

@@ -330,2 +330,6 @@ var QueryHelper = require('./util/queryHelper.js');

join += left.WHERE.map((left) => {
if (left.RIGHT === null) {
return `${left.LEFT} IS NULL`
}
return `${left.LEFT} = ${left.RIGHT}`

@@ -353,2 +357,6 @@ }).join(left.OPERATOR || " AND ");

join += right.WHERE.map((left) => {
if (left.RIGHT === null) {
return `${left.LEFT} IS NULL`
}
return `${left.LEFT} = ${left.RIGHT}`

@@ -376,2 +384,6 @@ }).join(right.OPERATOR || " AND ");

join += inner.WHERE.map((left) => {
if (left.RIGHT === null) {
return `${left.LEFT} IS NULL`
}
return `${left.LEFT} = ${left.RIGHT}`

@@ -378,0 +390,0 @@ }).join(inner.OPERATOR || " AND ");

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc