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