Browse Source

updating docs page

pull/544/head
jaymeans 7 years ago committed by jaymeans
parent
commit
6b5ea1d461
  1. 9
      docs/docs.html

9
docs/docs.html

@ -351,6 +351,7 @@ var csv = Papa.unparse({ @@ -351,6 +351,7 @@ var csv = Papa.unparse({
error: undefined,
download: false,
skipEmptyLines: false,
skipNoContentLines: false,
chunk: undefined,
fastMode: undefined,
beforeFirstChunk: undefined,
@ -508,6 +509,14 @@ var csv = Papa.unparse({ @@ -508,6 +509,14 @@ var csv = Papa.unparse({
If true, lines that are completely empty will be skipped. An empty line is defined to be one which evaluates to empty string.
</td>
</tr>
<tr>
<td>
<code>skipNoContentLines</code>
</td>
<td>
If true, lines that don't have any content will be skipped. Lacking content is defined as having only delimiters, quotes, and whitespace. <code>skipNoContentLines</code> can be set alongside <code>skipEmptyLines</code> or instead of <code>skipEmptyLines</code> and retain the same functionality.
</td>
</tr>
<tr>
<td>
<code>chunk</code>

Loading…
Cancel
Save