kimi42345
2020-03-02 2411eadd4ad4bef5c08c6ba2ea5898ea72136e29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
if (typeof(console) == "undefined") {
  var console = {
    info: function(){},
    warn: function(){},
    error: function(){},
    log: function(){},
    time: function(){},
    timeEnd: function(){}
  };
}
 
if(!Array.isArray) {
  Array.isArray = function (vArg) {
    return Object.prototype.toString.call(vArg) === "[object Array]";
  };
}
 
if (!Object.isSVGElement) {
  Object.isSVGElement = function(vArg) {
  var str = Object.prototype.toString.call(vArg);
  return (str.indexOf("[object SVG") == 0);
  };
}