simple-csv-reader

1.0.1 • Public • Published

simple-csv-reader

npm

Converts a CSV string into a JavaScript array according to the RFC 4180 standard.

Usage

simple-csv-reader can be imported as an AMD module or globally as the readcsv function. The first argument must be a string, containing the encoded CSV. The second argument is an optional object that can be used to change the default separator using the separator key (default is ,) and the default line separator using the newLine key (default is \r\n).

This library only deserializes the input and does not perform any check on the length of the lines.

import readcsv from "simple-csv-reader";

readcsv(
`1,simple text
2,"with ""quotes"""
3,"with separator, and 
newline"`
);
[
	["1", "simple text"],
	["2", "with \"quotes\""],
	["3", "with separator, and \nnewline"]
]

Package Sidebar

Install

npm i simple-csv-reader

Weekly Downloads

2

Version

1.0.1

License

MIT

Unpacked Size

13.4 kB

Total Files

8

Last publish

Collaborators

  • kripth