method

convert

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: NumberToCurrencyConverter
convert() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/number_helper/number_to_currency_converter.rb, line 10
      def convert
        format = options[:format]

        number_d = valid_bigdecimal
        if number_d
          if number_d.negative?
            number_d = number_d.abs
            format = options[:negative_format] if (number_d * 10**options[:precision]) >= 0.5
          end
          number_s = NumberToRoundedConverter.convert(number_d, options)
        else
          number_s = number.to_s.strip
          format = options[:negative_format] if number_s.sub!(/^-/, "")
        end

        format.gsub("%n", number_s).gsub("%u", options[:unit])
      end
Register or log in to add new notes.