(text: string)
| 122 | } |
| 123 | |
| 124 | export function truncateDescription(text: string): string { |
| 125 | return truncateText(text, MAX_DESCRIPTION_LENGTH); |
| 126 | } |
| 127 | |
| 128 | export function truncateIssueMessage(text: string): string { |
| 129 | return truncateText(text, MAX_ISSUE_MESSAGE_LENGTH); |
no test coverage detected