(content: string)
| 58 | export default new TitleGenerator(); |
| 59 | |
| 60 | function stripContent(content: string) { |
| 61 | return content.length > 100 ? content.substring(0, 100) + '...' : content; |
| 62 | } |
| 63 | |
| 64 | function getFirstSentence(content: string) { |
| 65 | // Return the first words of last message. |
no outgoing calls
no test coverage detected