nose-pluto/src/fatal.ts
2025-10-01 11:22:28 -07:00

10 lines
219 B
TypeScript

////
// We want to show a blue screen of death if NOSE has a fatal error.
export let fatal: string | undefined
export function setFatal(error: string) {
console.error(error)
if (!fatal)
fatal = error
}