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
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.8",
3
+
"version": "0.0.9",
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.",
* Treat the dataframe as CSV data for purposes of serialization.
230
230
* This is the first step you need in serializing a dataframe to a CSV data file.
231
231
*
232
+
* @param options Options for CSV output. The options object is passed directly to PapaParse, please see [PapaParse docs for additional options](https://www.papaparse.com/docs#config).
233
+
*
232
234
* @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.
* Treat the dataframe as CSV data for purposes of serialization.
285
294
* This is the first step you need in serializing a dataframe to a CSV data file.
286
295
*
296
+
* @param options Options for CSV output. The options object is passed directly to PapaParse, please see [PapaParse docs for additional options](https://www.papaparse.com/docs#config).
297
+
*
287
298
* @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.
* Treat the dataframe as CSV data for purposes of serialization.
327
345
* This is the first step you need in serializing a dataframe to a CSV data file.
328
346
*
329
-
* @param[options] Optional configuration for CSV output.
347
+
* @param options Options for CSV output. The options object is passed directly to PapaParse, please see [PapaParse docs for additional options](https://www.papaparse.com/docs#config).
330
348
*
331
349
* @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