(text: string)
| 118 | } |
| 119 | |
| 120 | export function truncateTitle(text: string): string { |
| 121 | return truncateText(text, MAX_TITLE_LENGTH); |
| 122 | } |
| 123 | |
| 124 | export function truncateDescription(text: string): string { |
| 125 | return truncateText(text, MAX_DESCRIPTION_LENGTH); |
no test coverage detected