UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

8 lines (6 loc) 159 B
export function devAssert(condition, message) { const booleanCondition = Boolean(condition); if (!booleanCondition) { throw new Error(message); } }