(content)
| 765 | } |
| 766 | |
| 767 | function normalizeShellContinuations(content) { |
| 768 | return content.replace(/\\\r?\n[ \t]*/g, " "); |
| 769 | } |
| 770 | |
| 771 | function formatCodePoint(codePoint) { |
| 772 | return `U+${codePoint.toString(16).toUpperCase().padStart(4, "0")}`; |
no outgoing calls
no test coverage detected