I have implemented jQuery-csv library to parse data from CSV file. My CSV file looks like this:
name, description, client name, client address, client desc
Name 123, Descript 123, client name 123, client address 55, client desc 66
Name 456, Descript 456, client name 55, client address 55, client desc 66
I am using $.csv.toObjects(csv);
var data = $.csv.toArrays(csv);
Is it possible to trim() whitespace for headers?
Based on
$.csv.toObjects(csv, options, callback)
in docBelow is my solution for removing the whitespaces (using
callback
)