(object)
| 291 | } catch (e) {} |
| 292 | |
| 293 | function classOf(object) { |
| 294 | // Argument must not be null or undefined. |
| 295 | var string = ObjectPrototypeToString.call(object); |
| 296 | // String has format [object <ClassName>]. |
| 297 | return string.substring(8, string.length - 1); |
| 298 | } |
| 299 | |
| 300 | |
| 301 | function ValueOf(value) { |
no test coverage detected