frontAnswerer/src/utils/notReachable.ts

4 lines
110 B
TypeScript
Raw Normal View History

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