Package Exports
- csv-split-easy
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (csv-split-easy) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
csv-split-easy
Splits the CSV string into array of arrays, each representing a row of columns
Install
npm i csv-split-easy
Quick Take
import { strict as assert } from "assert";
import splitEasy from "csv-split-easy";
assert.deepEqual(
splitEasy(
'Product Name,Main Price,Discounted Price\nTestarossa (Type F110),"100,000","90,000"\nF50,"2,500,000","1,800,000"'
),
[
["Product Name", "Main Price", "Discounted Price"],
["Testarossa (Type F110)", "100000", "90000"],
["F50", "2500000", "1800000"],
]
);
Documentation
Please visit codsen.com for a full description of the API and examples.
Licence
MIT License
Copyright (c) 2010-2020 Roy Revelt and other contributors