method
check_to
v1_8_6_287 -
Show latest stable
- Class:
URI::MailTo
check_to(v)private
No documentation available.
# File lib/uri/mailto.rb, line 158
def check_to(v)
return true unless v
return true if v.size == 0
if OPAQUE !~ v || /\A#{MAILBOX_PATTERN}*\z/o !~ v
raise InvalidComponentError,
"bad component(expected opaque component): #{v}"
end
return true
end