(text: string)
| 952 | (value): value is string => typeof value === "string" && value.length > 0, |
| 953 | ); |
| 954 | const scrubSecrets = (text: string): string => |
| 955 | secretValues.reduce((out, secret) => out.split(secret).join("[redacted]"), text); |
| 956 | |
| 957 | if (!probe.ok) { |
| 958 | return { |
no outgoing calls
no test coverage detected