UNPKG

@martinmilo/verve

Version:

TypeScript domain modeling library with field-level authorization, business rule validation, and context-aware access control

11 lines 328 B
"use strict"; 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