@martinmilo/verve
Version:
TypeScript domain modeling library with field-level authorization, business rule validation, and context-aware access control
11 lines • 328 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.composeFieldBuilder = composeFieldBuilder;
function composeFieldBuilder(base, mixins) {
let current = base;
for (const mixin of mixins) {
current = mixin(current);
}
return current;
}
//# sourceMappingURL=compose.js.map