Files
copilot-toolbox-template-123/node_modules/bail/index.js
2026-01-09 14:52:46 +00:00

13 lines
207 B
JavaScript

/**
* 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
}
}