mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 18:28:17 +08:00
11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
|
/**
|
||
|
* 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
|