mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 07:52:24 -04:00
3 lines
97 B
TypeScript
3 lines
97 B
TypeScript
export function assertUnreachable(x: never): never {
|
|
throw new Error(`unreachable: ${x}`);
|
|
}
|