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