method

convert_to_phone_number

rails latest stable - Class: ActiveSupport::NumberHelper::NumberToPhoneConverter
convert_to_phone_number(number)
private

No documentation available.

# File activesupport/lib/active_support/number_helper/number_to_phone_converter.rb, line 16
        def convert_to_phone_number(number)
          if opts[:area_code]
            convert_with_area_code(number)
          else
            convert_without_area_code(number)
          end
        end