mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-24 12:05:22 +08:00
Added debug log to see what is happening...
This commit is contained in:
parent
836742dc59
commit
74b2f5c542
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user