Allow lazy quotes

This commit is contained in:
nxshock 2022-10-07 20:17:50 +05:00
parent 22e7c395ec
commit 6a31bda929

View File

@ -82,6 +82,7 @@ func processReader(r io.Reader) error {
}
reader := csv.NewReader(bufReader)
reader.LazyQuotes = true
reader.TrimLeadingSpace = false
reader.FieldsPerRecord = len(opts.FieldTypes)