astro-ghostcms/.pnpm-store/v3/files/41/8ff4f19e12eacab3b216823f7de...

11 lines
234 B
Plaintext

/**
* Throw a given error.
*
* @param {Error|null|undefined} [error]
* Maybe error.
* @returns {asserts error is null|undefined}
*/
export function bail(
error?: Error | null | undefined
): asserts error is null | undefined