Browse Source

Updated docs

pull/543/head
Nikola Telkedzhiev 7 years ago
parent
commit
2f8adf926a
  1. 11
      docs/docs.html

11
docs/docs.html

@ -355,7 +355,8 @@ var csv = Papa.unparse({
fastMode: undefined, fastMode: undefined,
beforeFirstChunk: undefined, beforeFirstChunk: undefined,
withCredentials: undefined, withCredentials: undefined,
transform: undefined transform: undefined,
headerTransform: undefined
}</code></pre> }</code></pre>
</div> </div>
<div class="clear"></div> <div class="clear"></div>
@ -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. 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.
</td> </td>
</tr> </tr>
<tr>
<td>
<code>headerTransform</code>
</td>
<td>
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.
</td>
</tr>
</table> </table>
</div> </div>
</div> </div>

Loading…
Cancel
Save