(text: string)
| 58 | const MAX_TURNS_PER_TAG = 50; |
| 59 | |
| 60 | const escapeHtml = (text: string): string => |
| 61 | text.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">"); |
| 62 | |
| 63 | const getMessageText = (m?: Api.Message | null): string => { |
| 64 | if (!m) return ""; |
no outgoing calls
no test coverage detected