Matou-Garou / patches /convex /util /assertNever.ts
Jofthomas's picture
push bulk 1
8cbe088
raw
history blame
228 Bytes
// From https://www.typescriptlang.org/docs/handbook/unions-and-intersections.html#union-exhaustiveness-checking
export function assertNever(x: never): never {
throw new Error(`Unexpected object: ${JSON.stringify(x)}`);
}