fuc-new/doc/node_modules/bail/index.js
hellcat 6adbc04d4b 1
2025-10-03 17:17:08 +08: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
}
}