We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef2eda4 commit f369b15Copy full SHA for f369b15
1 file changed
src/FSharp.Data.Csv.Core/CsvRuntime.fs
@@ -447,6 +447,11 @@ type CsvFile<'RowType>
447
448
use writer = writer
449
450
+ // RFC 4180 (https://www.rfc-editor.org/rfc/rfc4180)
451
+ // 2. Definition of the CSV Format
452
+ // Each record is located on a separated line, delimited by a line break CRLF
453
+ writer.NewLine <- "\r\n"
454
+
455
let nullSafeguard str =
456
match str with
457
| null -> String.Empty
0 commit comments