lib/io_streams/tabular/parser/csv.rb in iostreams-0.19.0 vs lib/io_streams/tabular/parser/csv.rb in iostreams-0.20.0
- old
+ new
@@ -38,10 +38,10 @@
if RUBY_VERSION.to_f >= 2.6
# About 10 times slower than the approach used in Ruby 2.5 and earlier,
# but at least it works on Ruby 2.6 and above.
def parse_line(line)
- return if IOStreams.blank?(line)
+ return if IOStreams::Utils.blank?(line)
CSV.parse_line(line)
end
def render_array(array)