@backland/schema
Version:
TypeScript schema declaration and validation library with static type inference
14 lines (13 loc) • 329 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isHiddenFieldName = isHiddenFieldName;
/**
* Checks if the field names should be hidden from generated code
* @param name
*/
function isHiddenFieldName(name) {
return name === '__dschm__';
}
//# sourceMappingURL=isHiddenFieldName.js.map