diff --git a/docs/adapter.js.html b/docs/adapter.js.html index 26fdab5..3967ac1 100644 --- a/docs/adapter.js.html +++ b/docs/adapter.js.html @@ -114,7 +114,7 @@ module.exports = { Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/driver.js.html b/docs/driver.js.html index e9c5d08..4a89330 100644 --- a/docs/driver.js.html +++ b/docs/driver.js.html @@ -256,7 +256,7 @@ module.exports = d; Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/helpers.js.html b/docs/helpers.js.html index f26c065..fabea33 100644 --- a/docs/helpers.js.html +++ b/docs/helpers.js.html @@ -217,7 +217,7 @@ module.exports = h; Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/index.html b/docs/index.html index 2c6d6b1..850e13a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -158,7 +158,7 @@ query.select('foo') Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/module-State.html b/docs/module-State.html index 6d04ac2..09d949f 100644 --- a/docs/module-State.html +++ b/docs/module-State.html @@ -172,7 +172,7 @@ Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/module-adapter.html b/docs/module-adapter.html index 85f7cbe..6b65505 100644 --- a/docs/module-adapter.html +++ b/docs/module-adapter.html @@ -358,7 +358,7 @@ Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/module-driver.html b/docs/module-driver.html index a2fd2e6..9f82976 100644 --- a/docs/module-driver.html +++ b/docs/module-driver.html @@ -174,7 +174,7 @@ Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/module-helpers.html b/docs/module-helpers.html index ce19891..4761f8f 100644 --- a/docs/module-helpers.html +++ b/docs/module-helpers.html @@ -1031,7 +1031,7 @@ in the passed array

Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/module-node-query.html b/docs/module-node-query.html index 30939f9..b772533 100644 --- a/docs/module-node-query.html +++ b/docs/module-node-query.html @@ -489,7 +489,7 @@ Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/module-query-builder.html b/docs/module-query-builder.html index 6892f73..065c833 100644 --- a/docs/module-query-builder.html +++ b/docs/module-query-builder.html @@ -6642,7 +6642,7 @@ prefixed with 'OR NOT'

Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/module-query-parser.html b/docs/module-query-parser.html index 143024d..ad9b879 100644 --- a/docs/module-query-parser.html +++ b/docs/module-query-parser.html @@ -791,7 +791,7 @@ If there are no matches, return null

Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/modules.list.html b/docs/modules.list.html index f0d840f..d0e9bad 100644 --- a/docs/modules.list.html +++ b/docs/modules.list.html @@ -162,7 +162,7 @@ Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/node-query.js.html b/docs/node-query.js.html index 7c5a444..f600ec3 100644 --- a/docs/node-query.js.html +++ b/docs/node-query.js.html @@ -155,7 +155,7 @@ module.exports = new NodeQuery(); Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/query-builder.js.html b/docs/query-builder.js.html index c9c607a..5de7d36 100644 --- a/docs/query-builder.js.html +++ b/docs/query-builder.js.html @@ -1025,7 +1025,7 @@ module.exports = QueryBuilder; Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/query-parser.js.html b/docs/query-parser.js.html index 3589314..b158d44 100644 --- a/docs/query-parser.js.html +++ b/docs/query-parser.js.html @@ -208,7 +208,6 @@ var QueryParser = function(driver) { var outputMap = []; var outputValues = []; - var that = this; Object.keys(whereMap).forEach(function(key) { // Combine fields, operators, functions and values into a full clause @@ -216,7 +215,7 @@ var QueryParser = function(driver) { var fullClause = ''; // Add an explicit = sign where one is inferred - if ( ! that.hasOperator(key)) + if ( ! this.hasOperator(key)) { fullClause = key + ' = ' + whereMap[key]; } @@ -230,7 +229,7 @@ var QueryParser = function(driver) { } // Separate the clause into separate pieces - var parts = that.parseJoin(fullClause); + var parts = this.parseJoin(fullClause); // Filter explicit literals from lists of matches if (whereValues.indexOf(whereMap[key]) !== -1) @@ -325,7 +324,7 @@ var QueryParser = function(driver) { } outputMap.push(parts.combined.join(' ')); - }); + }, this); state.rawWhereValues = []; state.whereValues = state.whereValues.concat(outputValues); @@ -356,7 +355,7 @@ module.exports = QueryParser; Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template. diff --git a/docs/state.js.html b/docs/state.js.html index eb1bee3..70d453b 100644 --- a/docs/state.js.html +++ b/docs/state.js.html @@ -126,7 +126,7 @@ module.exports = function State() { Documentation generated by JSDoc 3.3.0-alpha9 - on Fri Jan 23rd 2015 using the DocStrap template.