From 2f8adf926a7557c34771747cd78bf4b920c5fbf8 Mon Sep 17 00:00:00 2001 From: Nikola Telkedzhiev Date: Thu, 26 Jul 2018 13:09:00 +0300 Subject: [PATCH] Updated docs --- docs/docs.html | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/docs.html b/docs/docs.html index 37fe8f1..fe1ea7c 100644 --- a/docs/docs.html +++ b/docs/docs.html @@ -355,7 +355,8 @@ var csv = Papa.unparse({ fastMode: undefined, beforeFirstChunk: undefined, withCredentials: undefined, - transform: undefined + transform: undefined, + headerTransform: undefined }
@@ -548,6 +549,14 @@ var csv = Papa.unparse({ A function to apply on each value. The function receives the value as its first argument and the column number as its second argument. The return value of the function will replace the value it received. The transform function is applied before dynamicTyping. + + + headerTransform + + + A function to apply on each header value. The function receives the value as its argument. The return value of the function will replace the value it received. The function is applied after trimHeaders. + +