├── .eslintignore ├── .eslintrc.yml ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── bin └── node-benchmark-compare.js ├── fixtures ├── big.csv ├── complex.csv ├── confidence.csv ├── http-bis.csv ├── http.csv ├── insufficient.csv └── path-dirname-posix.csv ├── package.json ├── src ├── .npmignore ├── _test-common.js ├── csv-parser.js ├── csv-parser.test.js ├── node-benchmark-compare.js └── node-benchmark-compare.test.js └── tap-snapshots └── src ├── csv-parser.test.js.test.cjs └── node-benchmark-compare.test.js.test.cjs /.eslintignore: -------------------------------------------------------------------------------- 1 | tap-snapshots 2 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage 2 | tap-snapshots 3 | .nyc_output 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/README.md -------------------------------------------------------------------------------- /bin/node-benchmark-compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/bin/node-benchmark-compare.js -------------------------------------------------------------------------------- /fixtures/big.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/fixtures/big.csv -------------------------------------------------------------------------------- /fixtures/complex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/fixtures/complex.csv -------------------------------------------------------------------------------- /fixtures/confidence.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/fixtures/confidence.csv -------------------------------------------------------------------------------- /fixtures/http-bis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/fixtures/http-bis.csv -------------------------------------------------------------------------------- /fixtures/http.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/fixtures/http.csv -------------------------------------------------------------------------------- /fixtures/insufficient.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/fixtures/insufficient.csv -------------------------------------------------------------------------------- /fixtures/path-dirname-posix.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/fixtures/path-dirname-posix.csv -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/package.json -------------------------------------------------------------------------------- /src/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/src/.npmignore -------------------------------------------------------------------------------- /src/_test-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/src/_test-common.js -------------------------------------------------------------------------------- /src/csv-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/src/csv-parser.js -------------------------------------------------------------------------------- /src/csv-parser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/src/csv-parser.test.js -------------------------------------------------------------------------------- /src/node-benchmark-compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/src/node-benchmark-compare.js -------------------------------------------------------------------------------- /src/node-benchmark-compare.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/src/node-benchmark-compare.test.js -------------------------------------------------------------------------------- /tap-snapshots/src/csv-parser.test.js.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/tap-snapshots/src/csv-parser.test.js.test.cjs -------------------------------------------------------------------------------- /tap-snapshots/src/node-benchmark-compare.test.js.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targos/node-benchmark-compare/HEAD/tap-snapshots/src/node-benchmark-compare.test.js.test.cjs --------------------------------------------------------------------------------