From 9fb92261db69da2a0722e8054509aba98338c66a Mon Sep 17 00:00:00 2001 From: Sergi Almacellas Abellana Date: Tue, 10 Oct 2017 09:23:47 +0200 Subject: [PATCH] Explain that autodetect only works for most common delimiters --- docs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs.html b/docs.html index 7e34e3b..3322aa1 100644 --- a/docs.html +++ b/docs.html @@ -371,7 +371,7 @@ var csv = Papa.unparse({ delimiter - The delimiting character. Leave blank to auto-detect. It can be a string or a function. If string, it must be one of length 1. If a function, it must accept the input as first parameter and it must return a string which will be used as delimiter. In both cases it cannot be found in Papa.BAD_DELIMITERS. + The delimiting character. Leave blank to auto-detect from a list of most common delimiters. It can be a string or a function. If string, it must be one of length 1. If a function, it must accept the input as first parameter and it must return a string which will be used as delimiter. In both cases it cannot be found in Papa.BAD_DELIMITERS.