c211499
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * 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 } }