method

storage_unit_key

storage_unit_key()
private

No documentation available.

# File activesupport/lib/active_support/number_helper/number_to_human_size_converter.rb, line 39
        def storage_unit_key
          key_end = smaller_than_base? ? "byte" : STORAGE_UNITS[exponent]
          "human.storage_units.units.#{key_end}"
        end