You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
host = DomainName("example.co.uk-")
host.tld
=> 'uk-' # not a valid TLD
host = DomainName("example.co.uk ")
host.tld
=> 'uk ' # not a valid TLD (space at the end)
host = DomainName("a.a-a")
host.tld
=> 'a-a ' # not a valid TLD
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: