( url: string | null | undefined, paramName = 'proxyUrl' )
| 791 | * Alias for validateExternalUrl for backward compatibility |
| 792 | */ |
| 793 | export function validateProxyUrl( |
| 794 | url: string | null | undefined, |
| 795 | paramName = 'proxyUrl' |
| 796 | ): ValidationResult { |
| 797 | return validateExternalUrl(url, paramName) |
| 798 | } |
| 799 | |
| 800 | /** |
| 801 | * Checks if an IP address is private or reserved (not routable on the public internet) |
no test coverage detected