diff --git a/docs.html b/docs.html index 1321933..05fafee 100644 --- a/docs.html +++ b/docs.html @@ -354,7 +354,8 @@ var csv = Papa.unparse({ chunk: undefined, fastMode: undefined, beforeFirstChunk: undefined, - withCredentials: undefined + withCredentials: undefined, + transform: undefined }
@@ -539,6 +540,14 @@ var csv = Papa.unparse({ A boolean value passed directly into XMLHttpRequest's "withCredentials" property. + + + transform + + + 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. + +