( obj )
| 63 | var support = {}; |
| 64 | |
| 65 | function toType( obj ) { |
| 66 | if ( obj == null ) { |
| 67 | return obj + ""; |
| 68 | } |
| 69 | |
| 70 | return typeof obj === "object" ? |
| 71 | class2type[ toString.call( obj ) ] || "object" : |
| 72 | typeof obj; |
| 73 | } |
| 74 | |
| 75 | function isWindow( obj ) { |
| 76 | return obj != null && obj === obj.window; |
no outgoing calls
no test coverage detected