convert()
public

No documentation available.

# File activesupport/lib/active_support/number_helper/number_to_phone_converter.rb, line 9
      def convert
        str = country_code(opts[:country_code]).dup
        str << convert_to_phone_number(number.to_s.strip)
        str << phone_ext(opts[:extension])
      end