method

flush_newline_if_pending

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: Erubi
flush_newline_if_pending(src) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/template/handlers/erb/erubi.rb, line 75
          def flush_newline_if_pending(src)
            if @newline_pending > 0
              with_buffer { src << ".safe_append='#{"\n" * @newline_pending}" << @text_end }
              @newline_pending = 0
            end
          end
Register or log in to add new notes.