UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

10 lines (8 loc) 226 B
export function invariant(condition, message) { const booleanCondition = Boolean(condition); if (!booleanCondition) { throw new Error( message != null ? message : 'Unexpected invariant triggered.', ); } }