astro-ghostcms/.pnpm-store/v3/files/3f/b919ce287516263caa33d123cd1...

13 lines
207 B
Plaintext

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