Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
inukshuk committed Oct 8, 2018
1 parent 1ae9ec4 commit 8550904
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/common/query.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ class ConditionalQuery extends Query {
return this.parse(conditions)
}

parse(input, { conditions = this.con, params = this.params, prefix = '' } = {}) {
parse(input, {
conditions = this.con,
params = this.params,
prefix = ''
} = {}) {
try {
if (typeof input === 'string') {
conditions.push(input)
Expand Down

0 comments on commit 8550904

Please sign in to comment.