(botToken: string, method: string)
| 2 | * Build a Telegram Bot API method URL for the given bot token. |
| 3 | */ |
| 4 | export function telegramApiUrl(botToken: string, method: string): string { |
| 5 | return `https://api.telegram.org/bot${botToken}/${method}` |
| 6 | } |
| 7 | |
| 8 | export function convertMarkdownToHTML(text: string): string { |
| 9 | return ( |
no outgoing calls
no test coverage detected