(data: Record<string, unknown> | undefined)
| 10 | } |
| 11 | |
| 12 | export function readCommandMessage(data: Record<string, unknown> | undefined): string | null { |
| 13 | return typeof data?.message === 'string' && data.message.length > 0 ? data.message : null; |
| 14 | } |
no outgoing calls
no test coverage detected