mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-13 13:17:50 +08:00
Added support for RuntimeArray
This commit is contained in:
parent
74b2f5c542
commit
4b9cb92247
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user