(text: string)
| 18 | const prefixes = getPrefixes(); |
| 19 | const mainPrefix = prefixes[0]; |
| 20 | |
| 21 | // HTML escape function |
| 22 | function codeTag(text: string | number): string { |
| 23 | return `<code>${htmlEscape(String(text))}</code>`; |
| 24 | } |
| 25 | |
| 26 | // Initialize database |
| 27 | let db = new Database( |
| 28 | path.join(createDirectoryInAssets("lottery"), "lottery.db") |
| 29 | ); |
| 30 |
no outgoing calls
no test coverage detected