frontend/.pnpm-store/v3/files/4e/0b02c1616af54c42676874b3106b77f84a1832c7396d1fb51136759babcffe29dfa594b4d592c69a67ac2db367e2af4432b8bc82bc172786b8eb30e9ab292a

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];
}
}
}