Added support for RuntimeArray

This commit is contained in:
Jonathan Frederic 2014-02-04 16:29:48 -08:00
parent 74b2f5c542
commit 4b9cb92247

View File

@ -1,5 +1,5 @@
var xor = function (a, b) {return !a ^ !b;};
var isArray = function (a) {console.log(toString.call(a)); return toString.call(a) === "[object Array]";};
var isArray = function (a) {return toString.call(a) === "[object Array]" || toString.call(a) === "[object RuntimeArray]";};
var recursive_compare = function(a, b) {
// Recursively compare two objects.
var same = true;