dashbitco / nimble_csv

A simple and fast CSV parsing and dumping library for Elixir
https://hexdocs.pm/nimble_csv
772 stars 51 forks source link

Make options an optional parameter #55

Closed fcevado closed 4 years ago

fcevado commented 4 years ago

closes #54

josevalim commented 4 years ago

If you are passing the default arguments, then you can use the builtin CSV parser: https://github.com/dashbitco/nimble_csv/blob/master/lib/nimble_csv.ex#L557

In all other cases, at least an option is expected, so I would like to nudge users to that direction. Thanks!