module CsvParser::Csv::NonEmptyRecords1

Public Instance Methods

value() click to toggle source
# File lib/csv_parser/csv_parser.rb, line 55
def value
  arr = [first_record.value]
  rest = other_records.value
  if rest
    arr.push(*rest)
  end
  arr
end