The CSV text to deserialize.
Returns an array of JavaScript objects that were deserialized from the CSV text.
Deserialize JSON text to a JavaScript array.
The JSON text to deserialize.
Returns an array of JavaScript objects that were deserialized from the JSON text.
Convert a regular JavaScript object to 'tablular data'. Each element of the matches a field from the object.
The JavaScript object to convert to a dataframe.
Returns an array with an element describing each field.
Asynchronously deserialize a CSV file to a JavaScript array. Each element of the array contains fields that match the columns from the CSV file.
Path to the file to be loaded.
Returns a promise for the loaded data.
Synchronously deserialize a CSV file to a JavaScript array. Each element of the array contains fields that match the columns from the CSV file.
Path to the file to be loaded.
Returns the loaded data.
Like fs.readFile but returns a promise for the file data.
Path to the file to be loaded.
A promise that is resolved with the contents of the file.
Asynchronously deserialize a JSON file to a JavaScript array.
Path to the file to be loaded.
Returns a promise for the loaded data.
Synchronously deserialize a JSON file to a JavaScript array.
Path to the file to be loaded.
Returns the loaded data.
Serialize a JavaScript array to the CSV data format. Columns in the CSV file match fields from the objects in the array.
The data to be serialized.
Returns a string in the CSV data format that represents the data.
Serialize a JavaScript array to the JSON data format.
The data to be serialized.
Returns a string in the JSON data format that represents the data.
Asynchronously serialize a JavaScript array to a CSV file. The fields in the objects of the array become the columns in the CSV file.
Path to the file to be written.
Returns a promise that resolves when the file has been written.
Synchronously serialize a JavaScript array to a CSV file. The fields in the objects of the array become the columns in the CSV file.
Path to the file to be written.
Like fs.writeFile but returns a promise for completion of the asynchronous file write.
Path to the file to be written.
Data to be written the to file.
A promise that is resolved when the file has been written.
Asynchronously serialize a JavaScript array to a JSON file.
Path to the file to be written.
Returns a promise that resolves when the file has been written.
Synchronously serialize a JavaScript array to a JSON file.
Path to the file to be written.
Returns a promise that resolves when the file has been written.
Generated using TypeDoc
Deserialize CSV text to a JavaScript array. Each element of the array contains fields that match the columns from the CSV data.