CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
index.js13 linesDownload Raw Back to bail
1/**2 * Throw a given error.3 *4 * @param {Error|null|undefined} [error]5 *   Maybe error.6 * @returns {asserts error is null|undefined}7 */8export function bail(error) {9  if (error) {10    throw error11  }12}13