diff options
Diffstat (limited to 'includes/external/school/node_modules/graphql/jsutils/devAssert.js.flow')
-rw-r--r-- | includes/external/school/node_modules/graphql/jsutils/devAssert.js.flow | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/includes/external/school/node_modules/graphql/jsutils/devAssert.js.flow b/includes/external/school/node_modules/graphql/jsutils/devAssert.js.flow new file mode 100644 index 0000000..691eae7 --- /dev/null +++ b/includes/external/school/node_modules/graphql/jsutils/devAssert.js.flow @@ -0,0 +1,8 @@ +// @flow strict +export default function devAssert(condition: mixed, message: string): void { + const booleanCondition = Boolean(condition); + // istanbul ignore else (See transformation done in './resources/inlineInvariant.js') + if (!booleanCondition) { + throw new Error(message); + } +} |