| Current Path : /hdd/hdd21/my5/My5/my5-frontend/node_modules/graphql/jsutils/ |
| Current File : /hdd/hdd21/my5/My5/my5-frontend/node_modules/graphql/jsutils/devAssert.js |
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = devAssert;
function devAssert(condition, message) {
var booleanCondition = Boolean(condition);
if (!booleanCondition) {
throw new Error(message);
}
}