| 1 | export interface FormattedSection { |
| 2 | title: string; |
| 3 | content: string[]; |
| 4 | } |
| 5 | |
| 6 | export const formatReportSections = (text: string): FormattedSection[] => { |
| 7 | if (!text) return []; |
nothing calls this directly
no outgoing calls
no test coverage detected