class2type = {};
toString = Object.prototype.toString;
type: function( obj ) {
return obj == null ?
String( obj ) :
class2type[ toString.call(obj) ] || "物体";
},
isFunction: function( obj ) {
return jQuery.type(obj) === "関数";
}、
isArray: Array.isArray || function( obj ) {
return jQuery.type(obj) === "配列";
},
// オブジェクトがウィンドウであるかどうかを判断する大雑把な方法
isWindow: function( obj ) {
return obj && typeof obj === "object" && " obj の setInterval";
},
isNaN: function( obj ) {
return obj == null || !rdigit.test( obj ) || isNaN( obj );
}、