├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── example.js ├── index.js ├── package.json └── test ├── air_pollution_nl.csv ├── air_pollution_nl.json ├── air_pollution_nl.ods ├── air_pollution_nl.txt ├── air_pollution_nl.xls ├── air_pollution_nl.xlsx ├── expected.json └── index.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/package.json -------------------------------------------------------------------------------- /test/air_pollution_nl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/test/air_pollution_nl.csv -------------------------------------------------------------------------------- /test/air_pollution_nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/test/air_pollution_nl.json -------------------------------------------------------------------------------- /test/air_pollution_nl.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/test/air_pollution_nl.ods -------------------------------------------------------------------------------- /test/air_pollution_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/test/air_pollution_nl.txt -------------------------------------------------------------------------------- /test/air_pollution_nl.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/test/air_pollution_nl.xls -------------------------------------------------------------------------------- /test/air_pollution_nl.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/test/air_pollution_nl.xlsx -------------------------------------------------------------------------------- /test/expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/test/expected.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/tabular-stream/HEAD/test/index.js --------------------------------------------------------------------------------