Files
starface-outlook-sync-addin/node_modules/@fluentui/utilities/lib/assertNever.js
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

9 lines
246 B
JavaScript

/**
* AssertNever is a utility function that can be used for exhaustiveness checks in switch statements.
*
* @public
*/
export function assertNever(x) {
throw new Error('Unexpected object: ' + x);
}
//# sourceMappingURL=assertNever.js.map