(text: string)
| 15 | } |
| 16 | |
| 17 | export function cleanUpQuotedEmail(text: string) { |
| 18 | return cleanUp(cleanUp(text, quotedSpanishRegex), quotedRegex); |
| 19 | } |
| 20 | |
| 21 | export function parseResponse(text: string) { |
| 22 | // TODO: improve this |
no test coverage detected