We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65f48a2 commit 13e6ca8Copy full SHA for 13e6ca8
js/utilFunctions.js
@@ -70,8 +70,8 @@ function getCondition(splitWordsStartIndex) {
70
condition += isNaN(splitWords[i]) ? '\'' + splitWords[i][0] + '\'' : splitWords[i];
71
}
72
73
- // add symbols accoding to relational operators
74
- // INCLUDE NOT EQUALS TO LIST
+ // add symbols according to relational operators
+
75
if (splitWords[i+1] === 'greater' && splitWords[i+2] === 'equals') {
76
condition += ' >= ';
77
i += 3;
@@ -92,6 +92,10 @@ function getCondition(splitWordsStartIndex) {
92
condition += ' == ';
93
i += 2;
94
95
+ else if (splitWords[i+1]==='not' && splitWords[i+2] ==='equals'){
96
+ condition += ' != ';
97
+ i += 3;
98
+ }
99
100
101
// for RHS of condition, check if user said the word variable
0 commit comments