Returns the character the csv reader object is using to split data into cells in the connected csv file.
No parameters
let csv = datasource.csvRead("example_file.csv", 0); let delim = csv.getDelimeter(); console.log(delim);
Result: ,
,