Class | CSV::StringReader |
In: |
lib/csv.rb
|
Parent: | Reader |
# File lib/csv.rb, line 592 592: def initialize(string, fs = ',', rs = nil) 593: @fs = fs 594: @rs = rs 595: @dev = string 596: @idx = 0 597: if @dev[0, 3] == "\xef\xbb\xbf" 598: @idx += 3 599: end 600: end