Added debug log to see what is happening...

This commit is contained in:
Jonathan Frederic 2014-02-04 16:18:04 -08:00
parent 836742dc59
commit 74b2f5c542

View File

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