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