File size: 148 Bytes
d9494a5
 
 
1
2
3
4
export const assertUnreachable = (_x: never, errorMessage?: string): never => {
  throw new Error(errorMessage ?? "Didn't expect to get here.");
};