UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

9 lines (8 loc) 291 B
// @flow strict export default function devAssert(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); } }