Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sqlquerybuilder

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sqlquerybuilder - npm Package Compare versions

Comparing version 0.0.60 to 0.0.61

8

lib/where.js

@@ -208,6 +208,10 @@ var _ = require('lodash'),

if (opIndex != -1) {
reference = subFilter.substr(1, opIndex - 1);
var data = subFilter.match(/(?:\(|)([^=]*)==([^\)]*)/);
console.log(data);
if(data === null) continue;
reference = data[1];
var compareTo = data[2];
whereString += "(" + self._whereJoin(reference) +
" = " +
convertTrueFalse(subFilter.substr(opIndex + 2, subFilter.length - opIndex - 3)) +
convertTrueFalse(compareTo) +
")";

@@ -214,0 +218,0 @@ continue;

{
"name": "sqlquerybuilder",
"version": "0.0.60",
"version": "0.0.61",
"description": "Highly opinionated Sql Server Query Writer, mostly for internal use.",

@@ -5,0 +5,0 @@ "main": "./lib/index",

Sorry, the diff of this file is too big to display

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