method
concat
v3.2.8 -
Show latest stable
- Class:
ActiveSupport::SafeBuffer
concat(value)public
No documentation available.
# File activesupport/lib/active_support/core_ext/string/output_safety.rb, line 131
def concat(value)
if !html_safe? || value.html_safe?
super(value)
else
super(ERB::Util.h(value))
end
end