Socket
Socket
Sign inDemoInstall

ee-query-builder

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ee-query-builder - npm Package Compare versions

Comparing version 0.2.2 to 0.2.3

16

lib/Functions.js

@@ -44,5 +44,7 @@ !function(){

else {
return ' IN (' +values.map(function(value) {
return this._escape(value);
}.bind(this)).join(', ') +')';
if (values.length) {
return ' IN (' +values.map(function(value) {
return this._escape(value);
}.bind(this)).join(', ') +')';
} else return ' 1'
}

@@ -62,5 +64,7 @@ //}

else {
return ' NOT IN (' +values.map(function(value){
return this._escape(value);
}.bind(this)).join(', ') +')';
if (values.length) {
return ' NOT IN (' +values.map(function(value){
return this._escape(value);
}.bind(this)).join(', ') +')';
} else return ' 1'
}

@@ -67,0 +71,0 @@ }

{
"name" : "ee-query-builder"
, "description" : "query builder for ee-orm"
, "version" : "0.2.2"
, "version" : "0.2.3"
, "homepage" : "https://github.com/eventEmitter/ee-query-builder"

@@ -6,0 +6,0 @@ , "author" : "Michael van der Weg <michael@eventemitter.com> (http://eventemitter.com/)"

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