newbolt / app /utils /unreachable.ts
0Scottzilla0's picture
Upload folder using huggingface_hub
8481fea verified
raw
history blame contribute delete
102 Bytes
export function unreachable(message: string): never {
throw new Error(`Unreachable: ${message}`);
}