├── .editorconfig ├── .gitignore ├── .istanbul.yml ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── test └── test.coffee /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/node-error-ex/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/node-error-ex/HEAD/.gitignore -------------------------------------------------------------------------------- /.istanbul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/node-error-ex/HEAD/.istanbul.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/node-error-ex/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/node-error-ex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/node-error-ex/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/node-error-ex/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/node-error-ex/HEAD/package.json -------------------------------------------------------------------------------- /test/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/node-error-ex/HEAD/test/test.coffee --------------------------------------------------------------------------------