JSPM

  • Created
  • Published
  • Downloads 411
  • Score
    100M100P100Q98373F
  • License MIT

Splits the CSV string into array of arrays, each representing a row of columns

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.

Contributing

To report bugs or request features or assistance, raise an issue on GitHub.

Licence

MIT License

Copyright (c) 2010-2021 Roy Revelt and other contributors

ok codsen star