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

mysql-query-builder-js

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mysql-query-builder-js - npm Package Compare versions

Comparing version 0.0.14 to 0.0.15

2

package.json
{
"name": "mysql-query-builder-js",
"version": "0.0.14",
"version": "0.0.15",
"description": "Query builder for mysql in Node.js",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -19,3 +19,3 @@ /**

for(key in data){
if(data[key]){
if(data[key] != null){
keys.push(key);

@@ -22,0 +22,0 @@ values.push(data[key]);

@@ -23,3 +23,3 @@ /**

for(key in data){
if(data[key]){
if(data[key]!=null){
sets.push(key+" = '"+data[key]+"'");

@@ -26,0 +26,0 @@ }

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