Spaces:
Sleeping
Sleeping
File size: 224 Bytes
90cbf22 |
1 2 3 4 5 |
// 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)}`);
}
|