UNPKG

246 BJavaScriptView Raw
1/**
2 * AssertNever is a utility function that can be used for exhaustiveness checks in switch statements.
3 *
4 * @public
5 */
6export function assertNever(x) {
7 throw new Error('Unexpected object: ' + x);
8}
9//# sourceMappingURL=assertNever.js.map
\No newline at end of file