throw-if
v0.0.1
Published
A small module for handling potential errors.
Downloads
6
Readme
throw-if
A small module to prevent re-writing the same error handling code again and again.
Example
Before ("old 'n busted")
foo((err) => {
if (err)
throw new Error(err);
// ...
});
After ("new hottness")
import throwIf from 'throw-if';
foo((err) => {
throwIf(err);
// ...
});
Install
npm install --save throw-if
Versions
- 0.0.1 - Initial commit