Error handling for Lapin calls. Handles fail returns without nesting, concatenates error codes.
npm install @sinet/lapin-send-error --save
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.
All pull requests must follow coding conventions and standards.