From 104004811c06bbd8d64615e82cabc708221bb4d1 Mon Sep 17 00:00:00 2001 From: janisdd Date: Sun, 27 Jan 2019 21:25:01 +0100 Subject: [PATCH] Update unparse documentation (#622) --- docs/docs.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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.