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({
error: undefined, error: undefined,
download: false, download: false,
skipEmptyLines: false, skipEmptyLines: false,
skipNoContentLines: false,
chunk: undefined, chunk: undefined,
fastMode: undefined, fastMode: undefined,
beforeFirstChunk: undefined, beforeFirstChunk: undefined,
@ -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. If true, lines that are completely empty will be skipped. An empty line is defined to be one which evaluates to empty string.
</td> </td>
</tr> </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> <tr>
<td> <td>
<code>chunk</code> <code>chunk</code>

Loading…
Cancel
Save