(value: string)
| 37 | } |
| 38 | |
| 39 | const escapeMarkdownText = (value: string): string => value.replace(/\\/g, "\\\\").replace(/[~<>*_]/g, "\\$&") |
| 40 | |
| 41 | const escapeAnnotationText = (value: string): string => { |
| 42 | const output: Array<string> = [] |
no test coverage detected