(text: string)
| 83 | } |
| 84 | |
| 85 | function escapeXmlAttribute(text: string): string { |
| 86 | return escapeXml(text).replace(/"/g, """).replace(/'/g, "'"); |
| 87 | } |
| 88 | |
| 89 | /** Ensures text ends with sentence-ending punctuation. */ |
| 90 | function ensureTrailingPunctuation(text: string): string { |
no test coverage detected
searching dependent graphs…