(msg: Api.Message)
| 425 | |
| 426 | function wantsQuoteHelp(argsText: string): boolean { |
| 427 | const t = argsText.trim().toLowerCase(); |
| 428 | if (!t) return false; |
| 429 | return /^(help|\?|h|帮助)$/i.test(t) || /(?:^|\s)(help|\?|帮助)(?:\s|$)/i.test(t); |
| 430 | } |
| 431 | |
| 432 | function foldSection(title: string, body: string): string { |
nothing calls this directly
no test coverage detected