(text: string)
| 152 | |
| 153 | /** Fold line breaks into spaces so a summary can never split a one-line slot. */ |
| 154 | export function collapseToSingleLine(text: string): string { |
| 155 | return text.replace(/\s*\n\s*/g, ' '); |
| 156 | } |
| 157 | |
| 158 | export function limitText(text: string, maxChars: number): string { |
| 159 | if (text.length <= maxChars) return text; |
no test coverage detected