├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── assets ├── demo.gif └── example.js ├── package.json ├── src ├── index.js └── request.js └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pd4d10/friendly-error/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pd4d10/friendly-error/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pd4d10/friendly-error/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pd4d10/friendly-error/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pd4d10/friendly-error/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /assets/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pd4d10/friendly-error/HEAD/assets/example.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pd4d10/friendly-error/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pd4d10/friendly-error/HEAD/src/index.js -------------------------------------------------------------------------------- /src/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pd4d10/friendly-error/HEAD/src/request.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | require('../src')({}) 2 | --------------------------------------------------------------------------------