mysql-query-builder-js
Advanced tools
Comparing version 0.0.11 to 0.0.14
{ | ||
"name": "mysql-query-builder-js", | ||
"version": "0.0.11", | ||
"version": "0.0.14", | ||
"description": "Query builder for mysql in Node.js", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -19,4 +19,6 @@ /** | ||
for(key in data){ | ||
keys.push(key); | ||
values.push(data[key]); | ||
if(data[key]){ | ||
keys.push(key); | ||
values.push(data[key]); | ||
} | ||
} | ||
@@ -23,0 +25,0 @@ |
@@ -23,3 +23,5 @@ /** | ||
for(key in data){ | ||
sets.push(key+" = '"+data[key]+"'"); | ||
if(data[key]){ | ||
sets.push(key+" = '"+data[key]+"'"); | ||
} | ||
} | ||
@@ -26,0 +28,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
13659
473