(obj)
| 9408 | } |
| 9409 | |
| 9410 | function safeToString(obj) { |
| 9411 | try { |
| 9412 | return obj + ""; |
| 9413 | } catch (e) { |
| 9414 | return "[no string representation]"; |
| 9415 | } |
| 9416 | } |
| 9417 | |
| 9418 | function isError(obj) { |
| 9419 | return obj !== null && |
no outgoing calls
no test coverage detected