Method: EachSQL#<<

Defined in:
lib/each_sql/each_sql.rb

#<<(input) ⇒ Object

Appends the given String to the buffer. @param input String to append



32
33
34
35
36
37
# File 'lib/each_sql/each_sql.rb', line 32

def << input
  if input
    @data << input.sub(/\A#{[65279].pack('U*')}/, '') # BOM (FIXME)
  end
  self
end