(value: string)
| 7 | value.replace(/"/g, '"'); |
| 8 | |
| 9 | const normalizeText = (value: string): string => value.replace(/\u00a0/g, ' '); |
| 10 | |
| 11 | const applyInlineTextFormatting = (value: string): string => { |
| 12 | let result = value; |
no test coverage detected