# File lib/faster_csv.rb, line 674 def to_a @table.inject([headers]) do |array, row| if row.header_row? array else array + [row.fields] end end end