inital upload
This commit is contained in:
7
node_modules/graphql/jsutils/devAssert.mjs
generated
vendored
Normal file
7
node_modules/graphql/jsutils/devAssert.mjs
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
export function devAssert(condition, message) {
|
||||
const booleanCondition = Boolean(condition);
|
||||
|
||||
if (!booleanCondition) {
|
||||
throw new Error(message);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user