10 lines
219 B
TypeScript
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
|
|
} |