diff options
Diffstat (limited to 'includes/external/school/node_modules/graphql/jsutils/devAssert.js')
-rw-r--r-- | includes/external/school/node_modules/graphql/jsutils/devAssert.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/includes/external/school/node_modules/graphql/jsutils/devAssert.js b/includes/external/school/node_modules/graphql/jsutils/devAssert.js new file mode 100644 index 0000000..25e6d11 --- /dev/null +++ b/includes/external/school/node_modules/graphql/jsutils/devAssert.js @@ -0,0 +1,14 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = devAssert; + +function devAssert(condition, message) { + var booleanCondition = Boolean(condition); // istanbul ignore else (See transformation done in './resources/inlineInvariant.js') + + if (!booleanCondition) { + throw new Error(message); + } +} |