ICSVOptions provides the CSV powere with optional information it needs to parse CSV files. In most scenarios this will
not be needed. If however you have a file that is not comma delimited you could specify that difference with the options.
Here is an example of tab separated values:
let options: ICSVOptions = {columnDelimiter: '\t'};
ICSVOptions provides the CSV powere with optional information it needs to parse CSV files. In most scenarios this will not be needed. If however you have a file that is not comma delimited you could specify that difference with the options.
Here is an example of tab separated values:
let options: ICSVOptions = {columnDelimiter: '\t'};