0.1.1 • Published 5 years ago

csv-read-json v0.1.1

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

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"}
]
*/
0.1.1

5 years ago

0.1.0

5 years ago