method
check_to
check_to(v)
private
Hide source
# 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