diff --git a/docs/docs.html b/docs/docs.html
index 1da2126..7680ef1 100644
--- a/docs/docs.html
+++ b/docs/docs.html
@@ -248,12 +248,12 @@
{
quotes: false,
quoteChar: '"',
- escapeChar: '"',
delimiter: ",",
header: true,
- newline: "\r\n"
+ newline: "\r\n",
+ skipEmptyLines: false, //or 'greedy'
}
- Set quotes
to true
to always enclose each field in quotes, or an array of true/false values correlating to specific to columns to force-quote. The character used to quote can be customized using quoteChar
. The character used to escape the quoteChar
within a field can be customized using escapeChar
. The delimiter
can be any valid delimiting character. The newline
character(s) may also be customized. Setting header
to false
will omit the header row.
+ Set quotes
to true
to always enclose each field in quotes, or an array of true/false values correlating to specific to columns to force-quote. The character used to quote can be customized using quoteChar
. The delimiter
can be any valid delimiting character. The newline
character(s) may also be customized. Setting header
to false
will omit the header row. Setting skipEmptyLines
to true
will skip completely empty rows (those which evaluate to an empty string). If set to 'greedy'
, rows that don't have any content (those which have only whitespace after unparsing) will also be skipped.