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

12 lines
351 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.assertNever = assertNever;
/**
* AssertNever is a utility function that can be used for exhaustiveness checks in switch statements.
*
* @public
*/
function assertNever(x) {
throw new Error('Unexpected object: ' + x);
}
//# sourceMappingURL=assertNever.js.map