(text: string)
| 77 | }; |
| 78 | } |
| 79 | function htmlEscape(text: string): string { |
| 80 | return String(text) |
| 81 | .replace(/&/g, "&") |
| 82 | .replace(/</g, "<") |
| 83 | .replace(/>/g, ">") |
| 84 | .replace(/"/g, """) |
| 85 | .replace(/'/g, "'"); |
| 86 | } |
| 87 | |
| 88 | class DbdjPlugin extends Plugin { |
| 89 | description: string = `点兵点将\n<code>${mainPrefix}dbdj 消息数 人数 文案</code> - 从最近的消息中随机抽取指定人数的用户`; |
no outgoing calls
no test coverage detected