Commit 2168063f authored by nanahira's avatar nanahira

fix

parent 083128d8
......@@ -45,7 +45,7 @@ async function loadConstants() {
}
function joinWithAnd(clauses: string[]) {
return `and (1 ${clauses.join(" ")})`;
return `${clauses.join(" ")}`;
}
function joinWithOr(clauses: string[]) {
const wrappedClauses = clauses.map(c => `(1 ${c})`)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment