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