UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

9 lines (7 loc) 241 B
// @flow strict export default function invariant(condition: mixed, message?: string): void { const booleanCondition = Boolean(condition); if (!booleanCondition) { throw new Error(message || 'Unexpected invariant triggered'); } }