(value: unknown)
| 20553 | } |
| 20554 | |
| 20555 | function normalizeNullableString(value: unknown): string | null { |
| 20556 | const normalized = typeof value === 'string' ? value.trim() : ''; |
| 20557 | return normalized || null; |
| 20558 | } |
| 20559 | |
| 20560 | async function stageAttachmentFile( |
| 20561 | attachment: InboundAttachment, |
no outgoing calls
no test coverage detected