csv

CSV serialization and parsing.

Can convert data to the csv string or split csv string in data array (understands and produces correct escaping, fully compatible with Excel's CSV output)

Methods
parse converts a CSV string to a Javascript data array
stringify converts a Javascript data array to a CSV string
Other
delimiter sets the default CSV delimiter
escape enables/activates the escape mode (activated by default)
Back to top