TenantAtlas/apps/platform/.pnpm-store/v10/files/4e/0b02c1616af54c42676874b3106b77f84a1832c7396d1fb51136759babcffe29dfa594b4d592c69a67ac2db367e2af4432b8bc82bc172786b8eb30e9ab292a
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

10 lines
406 B
Plaintext

export function applyMixins(derivedCtor: any, baseCtors: any[]) {
for (let i = 0, len = baseCtors.length; i < len; i++) {
const baseCtor = baseCtors[i];
const propertyKeys = Object.getOwnPropertyNames(baseCtor.prototype);
for (let j = 0, len2 = propertyKeys.length; j < len2; j++) {
const name = propertyKeys[j];
derivedCtor.prototype[name] = baseCtor.prototype[name];
}
}
}