├── .gitattributes ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Readme.md ├── cli.js ├── csv-streamify.js ├── package.json └── test ├── csv-spectrum.js ├── csv-streamify.js └── fixtures ├── quote.csv └── quote_crlf.csv /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaemo/csv-stream/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | node_modules/ 3 | bench.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaemo/csv-stream/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaemo/csv-stream/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaemo/csv-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaemo/csv-stream/HEAD/Readme.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaemo/csv-stream/HEAD/cli.js -------------------------------------------------------------------------------- /csv-streamify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaemo/csv-stream/HEAD/csv-streamify.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaemo/csv-stream/HEAD/package.json -------------------------------------------------------------------------------- /test/csv-spectrum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaemo/csv-stream/HEAD/test/csv-spectrum.js -------------------------------------------------------------------------------- /test/csv-streamify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaemo/csv-stream/HEAD/test/csv-streamify.js -------------------------------------------------------------------------------- /test/fixtures/quote.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaemo/csv-stream/HEAD/test/fixtures/quote.csv -------------------------------------------------------------------------------- /test/fixtures/quote_crlf.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaemo/csv-stream/HEAD/test/fixtures/quote_crlf.csv --------------------------------------------------------------------------------