frontAnswerer/lib/utils/notReachable.ts

4 lines
101 B
TypeScript
Raw Normal View History

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