0.0.1 • Published 10 years ago
throw-if v0.0.1
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
0.0.1
10 years ago