DIR : /home/kozerus/public_html/cropex/node/node_modules/bail/index.js
/home/kozerus/public_html/cropex/node/node_modules/bail
/**
* Throw a given error.
*
* @param {Error|null|undefined} [error]
* Maybe error.
* @returns {asserts error is null|undefined}
*/
export function bail(error) {
if (error) {
throw error
}
}
//