Remove Hunk's intentional SGR color codes while leaving unsafe controls visible.
(text: string)
| 7 | |
| 8 | /** Remove Hunk's intentional SGR color codes while leaving unsafe controls visible. */ |
| 9 | function stripColorSgr(text: string) { |
| 10 | return text.replace(/\x1b\[[0-9;]*m/g, ""); |
| 11 | } |
| 12 | |
| 13 | const OSC52_CLIPBOARD = "\x1b]52;c;SGVsbG8=\x07"; |
| 14 | const CSI_CLEAR_SCREEN = "\x1b[2J"; |
no outgoing calls
no test coverage detected