Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/graphql/jsutils/invariant.js.flow
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

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.',
);
}
}