csvtojsonsync
v1.1.1
Published
"convert csv to json synchronusly"
Downloads
10
Readme
csvtoJsonsync
Convert a simple csv file to json synchronously. it require two parameter: the csv filename and the delimeter for the file the default is ";"
var csvtoJsonSync = require("csvtojsonsync");
var csv = csvtoJsonSync("file.csv");// default 2nd parameter ";"
console.log(csv);//[{...}]
install
npm install csvtojsonsync