UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

15 lines (11 loc) 265 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true, }); exports.devAssert = devAssert; function devAssert(condition, message) { const booleanCondition = Boolean(condition); if (!booleanCondition) { throw new Error(message); } }