csv-read-json
v0.1.1
Published
Use csv file like json
Downloads
2
Readme
csv-read-json
This module helps you to using csv files like the json.
Usage
Has only one parameter (path: string)
CSVparser(path: string): Array
const CSVparser = require("csv-read-json"),
file = CSVparser("./file")
// CSV file is
/* type,name
fruit,apple
vegetable,potato
fruit,banana
*/
console.log(file)
//Result
/* [
{type:"fruit",name: "apple"},
{type: "vegetable", name: "potato"}
{type: "fruit", name: "banana"}
]
*/