method
safe_concat
v5.1.7 -
Show latest stable
- Class:
ActionView::Helpers::TextHelper
safe_concat(string)public
No documentation available.
# File actionview/lib/action_view/helpers/text_helper.rb, line 56
def safe_concat(string)
output_buffer.respond_to?(:safe_concat) ? output_buffer.safe_concat(string) : concat(string)
end