diff --git a/docs/docs.html b/docs/docs.html index 37fe8f1..973e390 100644 --- a/docs/docs.html +++ b/docs/docs.html @@ -7,12 +7,12 @@ - - - - - - + + + + + +
@@ -247,13 +247,37 @@// defaults shown
{
quotes: false,
+ onlyQuoteStrings: false,
quoteChar: '"',
escapeChar: '"',
delimiter: ",",
- header: true,
- newline: "\r\n"
+ newline: "\r\n",
+ header: true
}
- 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.
+ quotes
: Set this property to true
to always enclose each field in quotes, or an array of true/false values correlating to specific to columns to force-quote (e.g., [true, false, true]
).
+ onlyQuoteStrings
: Setting this property to true
will just quote strings in the resulting CSV. All other data types like numbers or booleans will not be quoted. Note, that this property overrides the quotes
property.
+ quoteChar
: The character used to quote.
+ escapeChar
: The character used to escape the quoteChar
within a field.
+ delimiter
: This property can be any valid delimiting character.
+ newline
: This property can be any valid newline character(s).
+ header
: Setting this property to false
will omit the header row.
+