From be2f9dc1387a39bbbf1bbc7ede421cefd1f1dff9 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Fri, 31 Oct 2014 11:58:12 -0400 Subject: [PATCH] Update docs --- docs/adapter.js.html | 2 +- docs/driver.js.html | 2 +- docs/helpers.js.html | 2 +- docs/index.html | 2 +- docs/module-adapter.html | 2 +- docs/module-driver.html | 2 +- docs/module-helpers.html | 2 +- docs/module-node-query.html | 2 +- docs/module-query-builder.html | 2 +- docs/module-query-parser.html | 8 ++++---- docs/modules.list.html | 2 +- docs/node-query.js.html | 2 +- docs/query-builder.js.html | 4 ++-- docs/query-parser.js.html | 7 ++----- 14 files changed, 19 insertions(+), 22 deletions(-) diff --git a/docs/adapter.js.html b/docs/adapter.js.html index 24cac96..8e1708a 100644 --- a/docs/adapter.js.html +++ b/docs/adapter.js.html @@ -110,7 +110,7 @@ module.exports = { Documentation generated by JSDoc 3.3.0-alpha9 - on Thu Oct 30th 2014 using the DocStrap template. diff --git a/docs/driver.js.html b/docs/driver.js.html index 5318609..ccd48bc 100644 --- a/docs/driver.js.html +++ b/docs/driver.js.html @@ -252,7 +252,7 @@ module.exports = d; Documentation generated by JSDoc 3.3.0-alpha9 - on Thu Oct 30th 2014 using the DocStrap template. diff --git a/docs/helpers.js.html b/docs/helpers.js.html index 284233f..bec238b 100644 --- a/docs/helpers.js.html +++ b/docs/helpers.js.html @@ -168,7 +168,7 @@ module.exports = h; Documentation generated by JSDoc 3.3.0-alpha9 - on Thu Oct 30th 2014 using the DocStrap template. diff --git a/docs/index.html b/docs/index.html index 65a6523..190f882 100644 --- a/docs/index.html +++ b/docs/index.html @@ -142,7 +142,7 @@ query.select('foo') Documentation generated by JSDoc 3.3.0-alpha9 - on Thu Oct 30th 2014 using the DocStrap template. diff --git a/docs/module-adapter.html b/docs/module-adapter.html index 4b8aeee..eae7e25 100644 --- a/docs/module-adapter.html +++ b/docs/module-adapter.html @@ -354,7 +354,7 @@ Documentation generated by JSDoc 3.3.0-alpha9 - on Thu Oct 30th 2014 using the DocStrap template. diff --git a/docs/module-driver.html b/docs/module-driver.html index cf9e4b9..5caa99f 100644 --- a/docs/module-driver.html +++ b/docs/module-driver.html @@ -170,7 +170,7 @@ Documentation generated by JSDoc 3.3.0-alpha9 - on Thu Oct 30th 2014 using the DocStrap template. diff --git a/docs/module-helpers.html b/docs/module-helpers.html index ead6b11..e3431db 100644 --- a/docs/module-helpers.html +++ b/docs/module-helpers.html @@ -686,7 +686,7 @@ function name, eg isNumber

Documentation generated by JSDoc 3.3.0-alpha9 - on Thu Oct 30th 2014 using the DocStrap template. diff --git a/docs/module-node-query.html b/docs/module-node-query.html index d53c188..f57d395 100644 --- a/docs/module-node-query.html +++ b/docs/module-node-query.html @@ -358,7 +358,7 @@ Documentation generated by JSDoc 3.3.0-alpha9 - on Thu Oct 30th 2014 using the DocStrap template. diff --git a/docs/module-query-builder.html b/docs/module-query-builder.html index 26db52a..50fd3d9 100644 --- a/docs/module-query-builder.html +++ b/docs/module-query-builder.html @@ -6007,7 +6007,7 @@ prefixed with 'OR NOT'

Documentation generated by JSDoc 3.3.0-alpha9 - on Thu Oct 30th 2014 using the DocStrap template. diff --git a/docs/module-query-parser.html b/docs/module-query-parser.html index 386a54e..170875d 100644 --- a/docs/module-query-parser.html +++ b/docs/module-query-parser.html @@ -113,7 +113,7 @@ @@ -244,7 +244,7 @@ @@ -394,7 +394,7 @@ @@ -466,7 +466,7 @@ Documentation generated by JSDoc 3.3.0-alpha9 - on Thu Oct 30th 2014 using the DocStrap template. diff --git a/docs/modules.list.html b/docs/modules.list.html index 4aee28e..ad2f29d 100644 --- a/docs/modules.list.html +++ b/docs/modules.list.html @@ -158,7 +158,7 @@ Documentation generated by JSDoc 3.3.0-alpha9 - on Thu Oct 30th 2014 using the DocStrap template. diff --git a/docs/node-query.js.html b/docs/node-query.js.html index f6457c9..e2fae77 100644 --- a/docs/node-query.js.html +++ b/docs/node-query.js.html @@ -129,7 +129,7 @@ module.exports = nodeQuery.init; Documentation generated by JSDoc 3.3.0-alpha9 - on Thu Oct 30th 2014 using the DocStrap template. diff --git a/docs/query-builder.js.html b/docs/query-builder.js.html index 422b7b5..b88fb76 100644 --- a/docs/query-builder.js.html +++ b/docs/query-builder.js.html @@ -234,7 +234,7 @@ var QueryBuilder = function(driver, adapter) { { obj[args.$key] = args.$val; } - else if ( ! helpers.isScalar(args.$key)) + else { obj = args.$key; } @@ -985,7 +985,7 @@ module.exports = QueryBuilder; Documentation generated by JSDoc 3.3.0-alpha9 - on Thu Oct 30th 2014 using the DocStrap template. diff --git a/docs/query-parser.js.html b/docs/query-parser.js.html index ed6a40c..c7ee391 100644 --- a/docs/query-parser.js.html +++ b/docs/query-parser.js.html @@ -95,10 +95,7 @@ var filterMatches = function(array) { if (helpers.isScalar(array) || helpers.isNull(array) || helpers.isUndefined(array)) return output; array.forEach(function(item) { - if ( ! helpers.isUndefined(item)) - { - output.push(item); - } + output.push(item); }); return output; @@ -187,7 +184,7 @@ module.exports = QueryParser; Documentation generated by JSDoc 3.3.0-alpha9 - on Thu Oct 30th 2014 using the DocStrap template.