Limitation :
Current implementation of IsURL function simply returns false (URL as invalid) if length of URL is more than 2082 runes/characters.
It does not check if the URL is valid based on regex and URL-parsing.
Approach
Remove the if-check present on maximum length and allow the function to check if the URL is valid based on regex and URL-parsing.
Limitation : Current implementation of IsURL function simply returns false (URL as invalid) if length of URL is more than 2082 runes/characters. It does not check if the URL is valid based on regex and URL-parsing.
Approach Remove the if-check present on maximum length and allow the function to check if the URL is valid based on regex and URL-parsing.