Browse Source

Add documentation for chunkSize (#818)

closes #673
pull/820/head
Akshay Raj Gollahalli 5 years ago committed by GitHub
parent
commit
12bf28a62f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      docs/docs.html

9
docs/docs.html

@ -444,6 +444,7 @@ var csv = Papa.unparse({ @@ -444,6 +444,7 @@ var csv = Papa.unparse({
downloadRequestBody: undefined,
skipEmptyLines: false,
chunk: undefined,
chunkSize: undefined,
fastMode: undefined,
beforeFirstChunk: undefined,
withCredentials: undefined,
@ -631,6 +632,14 @@ var csv = Papa.unparse({ @@ -631,6 +632,14 @@ var csv = Papa.unparse({
A callback function, identical to step, which activates streaming. However, this function is executed after every <i>chunk</i> of the file is loaded and parsed rather than every row. Works only with local and remote files. Do not use both chunk and step callbacks together. For the function signature, see the documentation for the step function.
</td>
</tr>
<tr>
<td>
<code>chunkSize</code>
</td>
<td>
Overrides <code>Papa.LocalChunkSize</code> and <code>Papa.RemoteChunkSize</code>. For more information see <a href="#configurable">configurable</a>.
</td>
</tr>
<tr>
<td>
<code>fastMode</code>

Loading…
Cancel
Save