(obj: unknown)
| 517 | } |
| 518 | |
| 519 | function isObject(obj: unknown) { |
| 520 | return obj != null && typeof obj === 'object'; |
| 521 | } |
| 522 | |
| 523 | function messageAndCause(error: Error) { |
| 524 | return error.cause === undefined ? 'message' : 'message and cause'; |
no outgoing calls
no test coverage detected