frontAnswerer/lib/utils/notReachable.ts

4 lines
99 B
TypeScript
Raw Permalink Normal View History

export function notReachable(_: never): never {
2024-05-31 16:41:18 +00:00
throw new Error(`Shouldn't reach here: ${_}`);
2023-12-16 14:55:56 +00:00
}