We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0eb2d7 commit d5d4464Copy full SHA for d5d4464
src/dependency.js
@@ -28,7 +28,6 @@ export async function getValueForDependency(equation) {
28
// console.log(getValueForDependency('"list name"."list item" == "new" and "list 2"."item 2" != "old" or "list 3"."item 3" in [list 4, item 4]'));
29
30
async function getEquationValue(equation) {
31
- debugger;
32
const operator = equation.match(/==|!=|\bin\b|<|<=|>|>=/ig)[0];
33
const [item, stateValue] = equation.split(operator);
34
const [listName, itemName] = item.split('.');
0 commit comments