frontAnswerer/lib/utils/notReachable.ts
2024-05-31 19:41:18 +03:00

4 lines
99 B
TypeScript

export function notReachable(_: never): never {
throw new Error(`Shouldn't reach here: ${_}`);
}