(result: Record<string, unknown>)
| 627 | } |
| 628 | |
| 629 | function readResultMessage(result: Record<string, unknown>): string | undefined { |
| 630 | return typeof result.message === 'string' && result.message.length > 0 |
| 631 | ? result.message |
| 632 | : undefined; |
| 633 | } |
no outgoing calls
no test coverage detected