UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

10 lines (8 loc) 227 B
// @flow strict export default function invariant(condition: mixed, message: string) { const booleanCondition = Boolean(condition); /* istanbul ignore else */ if (!booleanCondition) { throw new Error(message); } }