(source: string)
| 49 | } |
| 50 | |
| 51 | function isRemotePolicySource(source: string): boolean { |
| 52 | return source.startsWith("http://") || source.startsWith("https://"); |
| 53 | } |
| 54 | |
| 55 | function formatPolicySourceForLog(source: string): string { |
| 56 | if (!isRemotePolicySource(source)) { |
no outgoing calls
no test coverage detected