Skip to content

Commit d5d4464

Browse files
committed
Users should be able to specify dependencies for lists
Fixes #16
1 parent f0eb2d7 commit d5d4464

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/dependency.js

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ export async function getValueForDependency(equation) {
2828
// console.log(getValueForDependency('"list name"."list item" == "new" and "list 2"."item 2" != "old" or "list 3"."item 3" in [list 4, item 4]'));
2929

3030
async function getEquationValue(equation) {
31-
debugger;
3231
const operator = equation.match(/==|!=|\bin\b|<|<=|>|>=/ig)[0];
3332
const [item, stateValue] = equation.split(operator);
3433
const [listName, itemName] = item.split('.');

0 commit comments

Comments
 (0)