Urara-Blog/node_modules/.pnpm-store/v3/files/41/8ff4f19e12eacab3b216823f7de9517675bcd6c0ab0e515bc5e9f9a4fa88e2f7200300baf33fb5a1593bf603814809d3a5d23f827350cf4ad9b2e9f132c8ba
2022-08-14 01:14:53 +08:00

10 lines
234 B
Text

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