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 1.2.0 to 1.3.0

15

lib/sqb_ns.js

@@ -44,2 +44,5 @@ /* SQB

},
btw: function() {
return construct(require('./sqlobject/operators/OpBetween'), arguments);
},
in: function() {

@@ -66,10 +69,22 @@ return construct(require('./sqlobject/operators/OpIn'), arguments);

},
nbtw: function() {
return construct(require('./sqlobject/operators/OpNotBetween'), arguments);
},
notIn: function() {
return construct(require('./sqlobject/operators/OpNotIn'), arguments);
},
nin: function() {
return construct(require('./sqlobject/operators/OpNotIn'), arguments);
},
notLike: function() {
return construct(require('./sqlobject/operators/OpNotLike'), arguments);
},
nlike: function() {
return construct(require('./sqlobject/operators/OpNotLike'), arguments);
},
notILike: function() {
return construct(require('./sqlobject/operators/OpNotILike'), arguments);
},
nilike: function() {
return construct(require('./sqlobject/operators/OpNotILike'), arguments);
}

@@ -76,0 +91,0 @@ },

5

lib/sqlobject/operators/OpNotBetween.js

@@ -14,3 +14,2 @@ /* SQB

const CompOperator = require('./CompOperator');
const Serializable = require('../../Serializable');

@@ -30,2 +29,6 @@ /**

function OpNotBetween(expression, val1, val2) {
if (Array.isArray(val1)) {
val2 = val1[1];
val1 = val1[0];
}
CompOperator.apply(this, [expression, val1, val2 || val1]);

@@ -32,0 +35,0 @@ }

2

package.json
{
"name": "sqb",
"description": "Extensible, multi-dialect SQL query builder and Database connection framework for JavaScript",
"version": "1.2.0",
"version": "1.3.0",
"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