(it)
| 92 | return toString.call(it).slice(8, -1); |
| 93 | } |
| 94 | function classof(it){ |
| 95 | var O, T; |
| 96 | return it == undefined ? it === undefined ? 'Undefined' : 'Null' |
| 97 | : typeof (T = (O = Object(it))[SYMBOL_TAG]) == 'string' ? T : cof(O); |
| 98 | } |
| 99 | |
| 100 | // Function |
| 101 | var call = FunctionProto.call |
no test coverage detected