Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/petems/multiline-csv-converter

multiline-csv-converter
https://github.com/petems/multiline-csv-converter

Last synced: 1 day ago
JSON representation

multiline-csv-converter

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)
```