(value, deps)
| 907 | } |
| 908 | |
| 909 | function sanitizeText(value, deps) { |
| 910 | return redactKnownSecretsInString(redactString(String(value)), deps); |
| 911 | } |
| 912 | |
| 913 | function sanitizeStderrChunk(chunk, encoding, deps) { |
| 914 | const text = Buffer.isBuffer(chunk) |
no test coverage detected