Module: CsvParser::Csv::NonEmptyRecords1
- Defined in:
- lib/csv_parser/csv_parser.rb
Instance Method Summary collapse
Instance Method Details
#value ⇒ Object
55 56 57 58 59 60 61 62 |
# 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 |