From a77b837786826b934a13ccaadfa65c2dd00ce846 Mon Sep 17 00:00:00 2001 From: Puzzleton Date: Wed, 28 Aug 2019 11:02:21 -0500 Subject: [PATCH] Re-worded the docs regarding the quotes config parameter as a function --- docs/docs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs.html b/docs/docs.html index eb96521..647164e 100644 --- a/docs/docs.html +++ b/docs/docs.html @@ -282,7 +282,7 @@ quotes - If true, forces all fields to be enclosed in quotes. If an array of true/false values, specifies which fields should be force-quoted (first boolean is for the first column, second boolean for the second column, ...). If a function (accepting cell value & column index as parameters), returning true will force quotes for that value and false will not. + If true, forces all fields to be enclosed in quotes. If an array of true/false values, specifies which fields should be force-quoted (first boolean is for the first column, second boolean for the second column, ...). A function that returns a boolean values can be used to determine the quotes value of a cell. This function accepts the cell value and column index as parameters.