(existing: string, next: string)
| 388 | } |
| 389 | |
| 390 | function joinLifecycleText(existing: string, next: string) { |
| 391 | if (!existing) return next; |
| 392 | if (!next) return existing; |
| 393 | return `${existing}\n${next}`; |
| 394 | } |
| 395 | |
| 396 | function upsertLifecycleItem( |
| 397 | d: TranscriptDraft, |
no outgoing calls
no test coverage detected