export function throwError(condition: boolean, message: string) { if (condition) { throw new Error(message) } }