instance method
escape_unsafe_options
Ruby on Rails 5.2.8.1
Since v4.0.13 PrivateSignature
escape_unsafe_options(options)
No documentation comment.
Parameters
-
optionsreq
Source
# File actionview/lib/action_view/helpers/number_helper.rb, line 411
def escape_unsafe_options(options)
options[:format] = ERB::Util.html_escape(options[:format]) if options[:format]
options[:negative_format] = ERB::Util.html_escape(options[:negative_format]) if options[:negative_format]
options[:separator] = ERB::Util.html_escape(options[:separator]) if options[:separator]
options[:delimiter] = ERB::Util.html_escape(options[:delimiter]) if options[:delimiter]
options[:unit] = ERB::Util.html_escape(options[:unit]) if options[:unit] && !options[:unit].html_safe?
options[:units] = escape_units(options[:units]) if options[:units] && Hash === options[:units]
options
end
Defined in actionview/lib/action_view/helpers/number_helper.rb line 411
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Helpers::NumberHelper