(str)
| 85 | // Uses the comprehensive ANSI stripper from src/security/sanitize.js so |
| 86 | // we cover OSC, DCS, 8-bit C1, and other escape forms too — not just CSI. |
| 87 | function stripAnsi(str) { return secStripAnsi(str); } |
| 88 | if (args && typeof args === 'object') { |
| 89 | for (const key of Object.keys(args)) { |
| 90 | if (typeof args[key] === 'string') args[key] = stripAnsi(args[key]); |
no outgoing calls
no test coverage detected