gitextract_8bywzl85/ ├── .eslintrc.js ├── .github/ │ └── workflows/ │ └── node.js.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── docs/ │ ├── CNAME │ ├── Caddyfile │ ├── demo.html │ ├── docs.html │ ├── faq.html │ ├── index.html │ └── resources/ │ ├── css/ │ │ ├── common.css │ │ ├── demo.css │ │ ├── home.css │ │ ├── tomorrow.highlight.css │ │ └── unsemantic.css │ ├── files/ │ │ ├── big.csv │ │ ├── malformed.tsv │ │ └── normal.csv │ └── js/ │ ├── common.js │ ├── demo.js │ ├── home.js │ ├── lovers.js │ └── papaparse.js ├── package.json ├── papaparse.js ├── player/ │ ├── player.css │ ├── player.html │ └── player.js └── tests/ ├── .eslintrc.js ├── long-sample.csv ├── node-tests.js ├── sample-header.csv ├── sample.csv ├── test-cases.js ├── test.js ├── tests.html ├── utf-8-bom-sample.csv └── verylong-sample.csv