UNPKG

@graphql-tools/executor

Version:

Fork of GraphQL.js' execute function

10 lines (9 loc) 295 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.invariant = void 0; function invariant(condition, message) { if (!condition) { throw new Error(message != null ? message : 'Unexpected invariant triggered.'); } } exports.invariant = invariant;