1.0.1 • Published 6 years ago

csv-light v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

csv-light

Light parser from CSV to JSON. 🌪️

Install

$ npm i csv-light -S

Tests

$ npm test

Usage

const parse = require('csv-light');

const json = parse('"name","age","hasGirlfriend"\n"Mikhail Semin",16,true');

// [
//   {
//     name: 'Mikhail Semin',
//     age: 16,
//     hasGirlfriend: true,
//   },
// ]
1.0.1

6 years ago

1.0.0

6 years ago