(text: string)
| 1184 | } |
| 1185 | |
| 1186 | function formatTextCodeBlock(text: string): string { |
| 1187 | const safe = text.trim().replace(/```/g, '``\u200b`'); |
| 1188 | return `\n\`\`\`text\n${safe}\n\`\`\`\n`; |
| 1189 | } |
| 1190 | |
| 1191 | function whitelistUsageText(): string { |
| 1192 | return [ |
no outgoing calls
no test coverage detected