Matou-Garou / convex /util /assertNever.ts
Jofthomas's picture
Jofthomas HF staff
bulk
ce8b18b
raw
history blame
224 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)}`);
}