├── .gitignore ├── LICENSE ├── README.md ├── iferr.js ├── package.json └── test ├── index.coffee └── mocha.opts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shesek/iferr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shesek/iferr/HEAD/README.md -------------------------------------------------------------------------------- /iferr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shesek/iferr/HEAD/iferr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shesek/iferr/HEAD/package.json -------------------------------------------------------------------------------- /test/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shesek/iferr/HEAD/test/index.coffee -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shesek/iferr/HEAD/test/mocha.opts --------------------------------------------------------------------------------