owl-cli 5.31.0 → 5.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -881,12 +881,14 @@ var @projectCodeService = (function (pigeon) {
|
|
|
881
881
|
}
|
|
882
882
|
}];
|
|
883
883
|
for(var k in searchArgs){
|
|
884
|
+
|
|
885
|
+
var v = searchArgs[k];
|
|
886
|
+
|
|
884
887
|
var isNotClause = false;
|
|
885
888
|
if(k.indexOf("!")===0){
|
|
886
889
|
isNotClause = true;
|
|
887
890
|
k = k.substring(1);
|
|
888
891
|
}
|
|
889
|
-
var v = searchArgs[k];
|
|
890
892
|
if(typeof v === 'object' && v.type === 'or'){
|
|
891
893
|
var shouldClauses = [];
|
|
892
894
|
if(Array.isArray(v.args)){
|