Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mikermcneil committed May 15, 2018
1 parent 2a5507d commit 30c211f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/query/converter.js
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ module.exports = function convert(options) {
//
// When a find query contains an instruction set, build up a set of joins for
// the query to use.
var processJoins = function processJoins(instructions) {
function processJoins(instructions) {
// Build an array to hold all the normalized join instructions
var joins = [];

Expand Down Expand Up @@ -382,7 +382,7 @@ module.exports = function convert(options) {
});

query.leftOuterJoin = joins;
};
}


// ╔╗ ╦ ╦╦╦ ╔╦╗ ╔═╗ ╦ ╦╔═╗╦═╗╦ ╦
Expand Down
2 changes: 2 additions & 0 deletions lib/query/tokenizer.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-use-before-define */
// ████████╗ ██████╗ ██╗ ██╗███████╗███╗ ██╗██╗███████╗███████╗██████╗
// ╚══██╔══╝██╔═══██╗██║ ██╔╝██╔════╝████╗ ██║██║╚══███╔╝██╔════╝██╔══██╗
// ██║ ██║ ██║█████╔╝ █████╗ ██╔██╗ ██║██║ ███╔╝ █████╗ ██████╔╝
Expand Down Expand Up @@ -1314,3 +1315,4 @@ module.exports = function tokenizer(expression) {
// Return the tokenenized result set
return results;
};
/* eslint-enable no-use-before-define */

0 comments on commit 30c211f

Please sign in to comment.