mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-11-29 08:49:40 +00:00
11 lines
359 B
Plaintext
11 lines
359 B
Plaintext
// @flow strict
|
|
export default function invariant(condition: mixed, message?: string): void {
|
|
const booleanCondition = Boolean(condition);
|
|
// istanbul ignore else (See transformation done in './resources/inlineInvariant.js')
|
|
if (!booleanCondition) {
|
|
throw new Error(
|
|
message != null ? message : 'Unexpected invariant triggered.',
|
|
);
|
|
}
|
|
}
|