frontPanel/src/utils/notReachable.ts

4 lines
101 B
TypeScript
Raw Normal View History

2023-11-13 18:04:51 +00:00
export function notReachable(_: never): never {
throw new Error(`Shouldn't reach here: ${_}`);
}