instance method
escape_units
Ruby on Rails 4.0.13
Since v4.0.13 PrivateSignature
escape_units(units)
No documentation comment.
Parameters
-
unitsreq
Source
# File actionpack/lib/action_view/helpers/number_helper.rb, line 421
def escape_units(units)
Hash[units.map do |k, v|
[k, ERB::Util.html_escape(v)]
end]
end
Defined in actionpack/lib/action_view/helpers/number_helper.rb line 421
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Helpers::NumberHelper