You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>Returns a <ahref="interfaces/icsvserializer.html">ICsvSerializer</a> that represents the dataframe for serialization in the CSV format. Call <code>writeFile</code> or <code>writeFileSync</code> to output the CSV data to a text file.</p>
@@ -149,7 +152,7 @@ <h3>asJSON</h3>
149
152
<liclass="tsd-description">
150
153
<asideclass="tsd-sources">
151
154
<ul>
152
-
<li>Defined in <ahref="https://github.com/data-forge/data-forge-fs/blob/f1cad7b/src/index.ts#L361">index.ts:361</a></li>
155
+
<li>Defined in <ahref="https://github.com/data-forge/data-forge-fs/blob/463368c/src/index.ts#L367">index.ts:367</a></li>
153
156
</ul>
154
157
</aside>
155
158
<divclass="tsd-comment tsd-typography">
@@ -202,7 +205,7 @@ <h3>read<wbr>File</h3>
202
205
<liclass="tsd-description">
203
206
<asideclass="tsd-sources">
204
207
<ul>
205
-
<li>Defined in <ahref="https://github.com/data-forge/data-forge-fs/blob/f1cad7b/src/index.ts#L695">index.ts:695</a></li>
208
+
<li>Defined in <ahref="https://github.com/data-forge/data-forge-fs/blob/463368c/src/index.ts#L701">index.ts:701</a></li>
Copy file name to clipboardExpand all lines: package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "data-forge-fs",
3
-
"version": "0.0.6",
3
+
"version": "0.0.8",
4
4
"description": "This library contains the file system extensions to Data-Forge that allow it to directly read and write CSV and JSON files in Node.js.",
@@ -98,7 +102,7 @@ class CsvSerializer<IndexT, ValueT> implements ICsvSerializer {
98
102
assert.isString(filePath,"Expected 'filePath' parameter to 'DataFrame.asCSV().writeFileSync' to be a string that specifies the path of the file to write to the local file system.");
* Treat the dataframe as CSV data for purposes of serialization.
323
327
* This is the first step you need in serializing a dataframe to a CSV data file.
324
328
*
329
+
* @param [options] Optional configuration for CSV output.
330
+
*
325
331
* @return Returns a {@link ICsvSerializer} that represents the dataframe for serialization in the CSV format. Call `writeFile` or `writeFileSync` to output the CSV data to a text file.
0 commit comments