├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── bin └── index.js ├── lib ├── bars.js ├── const.js ├── index.js └── normalizers.js ├── package.json ├── tests ├── .eslintrc.js ├── __fixtures__ │ ├── age-distrib-germany.json │ ├── balance.json │ └── gradual-data.json ├── __snapshots__ │ ├── bars.test.js.snap │ ├── const.test.js.snap │ ├── index.test.js.snap │ └── normalizers.test.js.snap ├── bars.test.js ├── const.test.js ├── index.test.js └── normalizers.test.js ├── wunder-bar-cat-file.png ├── wunder-bar-cli-all.png ├── wunder-bar-echo-json.png └── wunder-bar-precise.png /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | .* 4 | !.gitignore 5 | !.eslintrc.* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/README.md -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/bin/index.js -------------------------------------------------------------------------------- /lib/bars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/lib/bars.js -------------------------------------------------------------------------------- /lib/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/lib/const.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/normalizers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/lib/normalizers.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/package.json -------------------------------------------------------------------------------- /tests/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['plugin:jest/recommended'], 3 | }; 4 | -------------------------------------------------------------------------------- /tests/__fixtures__/age-distrib-germany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/tests/__fixtures__/age-distrib-germany.json -------------------------------------------------------------------------------- /tests/__fixtures__/balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/tests/__fixtures__/balance.json -------------------------------------------------------------------------------- /tests/__fixtures__/gradual-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/tests/__fixtures__/gradual-data.json -------------------------------------------------------------------------------- /tests/__snapshots__/bars.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/tests/__snapshots__/bars.test.js.snap -------------------------------------------------------------------------------- /tests/__snapshots__/const.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/tests/__snapshots__/const.test.js.snap -------------------------------------------------------------------------------- /tests/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/tests/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /tests/__snapshots__/normalizers.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/tests/__snapshots__/normalizers.test.js.snap -------------------------------------------------------------------------------- /tests/bars.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/tests/bars.test.js -------------------------------------------------------------------------------- /tests/const.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/tests/const.test.js -------------------------------------------------------------------------------- /tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/tests/index.test.js -------------------------------------------------------------------------------- /tests/normalizers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/tests/normalizers.test.js -------------------------------------------------------------------------------- /wunder-bar-cat-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/wunder-bar-cat-file.png -------------------------------------------------------------------------------- /wunder-bar-cli-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/wunder-bar-cli-all.png -------------------------------------------------------------------------------- /wunder-bar-echo-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/wunder-bar-echo-json.png -------------------------------------------------------------------------------- /wunder-bar-precise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gribnoysup/wunderbar/HEAD/wunder-bar-precise.png --------------------------------------------------------------------------------