bolt.diy / app /utils /unreachable.ts
Sam Denty
fix: remove monorepo
6fb59d2 unverified
raw
history blame
102 Bytes
export function unreachable(message: string): never {
throw new Error(`Unreachable: ${message}`);
}