bolt.diy / app /utils /unreachable.ts
aproli90's picture
Upload 289 files
2e1ab99 verified
raw
history blame
102 Bytes
export function unreachable(message: string): never {
throw new Error(`Unreachable: ${message}`);
}