( obj )
| 54 | var support = {}; |
| 55 | |
| 56 | function toType( obj ) { |
| 57 | if ( obj == null ) { |
| 58 | return obj + ""; |
| 59 | } |
| 60 | |
| 61 | return typeof obj === "object" ? |
| 62 | class2type[ toString.call( obj ) ] || "object" : |
| 63 | typeof obj; |
| 64 | } |
| 65 | |
| 66 | function isWindow( obj ) { |
| 67 | return obj != null && obj === obj.window; |
no outgoing calls
no test coverage detected