node-csv
node-csv copied to clipboard
Where is very simple way to process string with CSV?
How to parse simple string which I got from file?
Just use the sync API
import { generate, parse, transform, stringify } from "csv/sync";
// Or
import { parse } from "csv-parse/sync";
// Then
parse("your,csv,string", options);
Closing since an answer was provided and no comment was added.