mirror of
https://github.com/harivansh-afk/asap.it.git
synced 2026-04-15 08:03:41 +00:00
3 lines
102 B
TypeScript
3 lines
102 B
TypeScript
export function unreachable(message: string): never {
|
|
throw new Error(`Unreachable: ${message}`);
|
|
}
|