(value: string)
| 649 | } |
| 650 | |
| 651 | function isUrlLike(value: string): boolean { |
| 652 | return value.startsWith('http://') || value.startsWith('https://') || value.startsWith('/') |
| 653 | } |
| 654 | |
| 655 | /** |
| 656 | * Extracts HTTPS URL from a file input object (UserFile or RawFileInput) |
no outgoing calls
no test coverage detected