@sinet/lapin-send-error
v2.0.1
Published
Uniform way to send errors for lapin, removing nesting, and concatenating error codes
Downloads
3
Readme
Lapin Send Error
Error handling for Lapin calls. Handles fail returns without nesting, concatenates error codes.
Usage
npm install @sinet/lapin-send-error --save
Example
If you receive an error from a database query or remote lapin call easily handle it with:
const sendError = require( '@sinet/lapin-send-error' );
if ( error ) {
return sendError( send, error, 'code' );
}
The first parameter is the send
object from Lapin.
Contributing
All pull requests must follow coding conventions and standards.