├── .eslintrc ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── confusion ├── index.js ├── package.json └── test.coffee /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxebu/confusion/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxebu/confusion/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxebu/confusion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxebu/confusion/HEAD/README.md -------------------------------------------------------------------------------- /bin/confusion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxebu/confusion/HEAD/bin/confusion -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxebu/confusion/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxebu/confusion/HEAD/package.json -------------------------------------------------------------------------------- /test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxebu/confusion/HEAD/test.coffee --------------------------------------------------------------------------------