``` ruby FastestCSV.parse("\n\n\n") # [[nil], [nil], [nil]] CSV.parse("\n\n\n") # [[], [], []] ``` https://github.com/brightcode/fastest-csv/blob/bc99d30975ef23e9be5d8b4d8da0539f136c54a5/ext/csv_parser/parser.c#L83
fastest-csv/ext/csv_parser/parser.c
Line 83 in bc99d30