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