├── .gitignore ├── index.js ├── package.json ├── readme.md └── test └── tests.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadogj/node-simple-errors/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadogj/node-simple-errors/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadogj/node-simple-errors/HEAD/readme.md -------------------------------------------------------------------------------- /test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadogj/node-simple-errors/HEAD/test/tests.js --------------------------------------------------------------------------------