(text: string)
| 874 | (value): value is string => typeof value === "string" && value.length > 0, |
| 875 | ); |
| 876 | const scrubSecrets = (text: string): string => |
| 877 | secretValues.reduce((out, secret) => out.split(secret).join("[redacted]"), text); |
| 878 | |
| 879 | if (!probe.ok) { |
| 880 | return { |
no outgoing calls
no test coverage detected