├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── bin └── crapify.js ├── lib ├── crapify.js └── crappy-stream.js ├── package.json └── test ├── crapify-test.js └── fixtures └── response.txt /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/crapify/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/crapify/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/crapify/HEAD/README.md -------------------------------------------------------------------------------- /bin/crapify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/crapify/HEAD/bin/crapify.js -------------------------------------------------------------------------------- /lib/crapify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/crapify/HEAD/lib/crapify.js -------------------------------------------------------------------------------- /lib/crappy-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/crapify/HEAD/lib/crappy-stream.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/crapify/HEAD/package.json -------------------------------------------------------------------------------- /test/crapify-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/crapify/HEAD/test/crapify-test.js -------------------------------------------------------------------------------- /test/fixtures/response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/crapify/HEAD/test/fixtures/response.txt --------------------------------------------------------------------------------