doiforms
Version:
A generalized tool for building formatted forms on multiple platforms
12 lines • 449 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function outputErrorState(Update) {
var defaultErrorMessage = "Problem with this form!";
return {
ErrorMessage: Update ? Update.ErrorMessage : defaultErrorMessage,
ErrorStack: Update ? Update.ErrorStack : undefined,
HasError: true
};
}
exports.outputErrorState = outputErrorState;
//# sourceMappingURL=outputErrorState.js.map