UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

9 lines (7 loc) 204 B
// @flow strict export default function devAssert(condition: mixed, message: string): void { const booleanCondition = Boolean(condition); if (!booleanCondition) { throw new Error(message); } }