mysql-query-builder-js
Advanced tools
Comparing version 0.0.14 to 0.0.15
{ | ||
"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 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13673