(t: string)
| 74 | } |
| 75 | |
| 76 | const isMultiline = (t: string): boolean => t.split('\n').filter(l => l.trim()).length >= 3; |
| 77 | |
| 78 | function head(text: string, max = 160): string { |
| 79 | return text.replace(/\s+/g, ' ').trim().slice(0, max); |
no outgoing calls
no test coverage detected