https://github.com/petems/multiline-csv-converter
multiline-csv-converter
https://github.com/petems/multiline-csv-converter
Last synced: 5 months ago
JSON representation
multiline-csv-converter
- Host: GitHub
- URL: https://github.com/petems/multiline-csv-converter
- Owner: petems
- License: mit
- Created: 2024-05-02T16:24:27.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-04T05:19:32.000Z (about 1 year ago)
- Last Synced: 2025-01-12T16:37:47.887Z (6 months ago)
- Language: JavaScript
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# multiline-csv-converter
A simple javascript library that allows you to replace any newlines in csv file filed.
## Usage
```
const { parseCsv } = require("multiline-csv-converter")const preCsvString = `
title,description,snippet
first,line,"
multi
line
input
"`let newCsv = parseCsv(preCsvString, '
')console.log(newCsv)
```