(obj)
| 9416 | } |
| 9417 | |
| 9418 | function isError(obj) { |
| 9419 | return obj !== null && |
| 9420 | typeof obj === "object" && |
| 9421 | typeof obj.message === "string" && |
| 9422 | typeof obj.name === "string"; |
| 9423 | } |
| 9424 | |
| 9425 | function markAsOriginatingFromRejection(e) { |
| 9426 | try { |
no test coverage detected