owl-cli 6.66.0 → 6.67.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.
|
@@ -9,7 +9,7 @@ function isScalar(o){
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
function isEqual(r1,r2){
|
|
12
|
-
var ignoreKeys = ['_type','_matched','_v'];
|
|
12
|
+
var ignoreKeys = ['_type','_matched','_v','_m'];
|
|
13
13
|
if(r1==null && r2==null){
|
|
14
14
|
return true;
|
|
15
15
|
}
|
|
@@ -66,7 +66,7 @@ function diffArray(a1, a2,parentKeys){
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
var newa2 = [];
|
|
69
|
-
for(var
|
|
69
|
+
for(var j=0; j<a2.length; j++){
|
|
70
70
|
if(a2[j]){
|
|
71
71
|
newa2.push(a2[j]);
|
|
72
72
|
}
|