linting
This commit is contained in:
parent
078cb07b04
commit
91d5308d99
|
@ -229,7 +229,10 @@ class QueryBuilder {
|
||||||
if (!value) {
|
if (!value) {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
return `${key}.${value}:${builder.preprocess(value, allPreProcessingOpts)}`
|
return `${key}.${value}:${builder.preprocess(
|
||||||
|
value,
|
||||||
|
allPreProcessingOpts
|
||||||
|
)}`
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -238,7 +241,10 @@ class QueryBuilder {
|
||||||
if (!value) {
|
if (!value) {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
return `!${key}.${value}:${builder.preprocess(value, allPreProcessingOpts)}`
|
return `!${key}.${value}:${builder.preprocess(
|
||||||
|
value,
|
||||||
|
allPreProcessingOpts
|
||||||
|
)}`
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue