(text: string)
| 961 | (value): value is string => typeof value === "string" && value.length > 0, |
| 962 | ); |
| 963 | const scrubSecrets = (text: string): string => |
| 964 | secretValues.reduce((out, secret) => out.split(secret).join("[redacted]"), text); |
| 965 | |
| 966 | if (!probe.ok) { |
| 967 | return { |
no outgoing calls
no test coverage detected