##// END OF EJS Templates
Added debug log to see what is happening...
Jonathan Frederic -
Show More
@@ -1,5 +1,5 b''
1 1 var xor = function (a, b) {return !a ^ !b;};
2 var isArray = function (a) {return toString.call(a) === "[object Array]";};
2 var isArray = function (a) {console.log(toString.call(a)); return toString.call(a) === "[object Array]";};
3 3 var recursive_compare = function(a, b) {
4 4 // Recursively compare two objects.
5 5 var same = true;
General Comments 0
You need to be logged in to leave comments. Login now