SourceTermAnalysisSystem_vue/node_modules/@antv/x6-common/es/object/mixins.js
2026-05-15 10:22:44 +08:00

13 lines
482 B
JavaScript

/**
* @see https://www.typescriptlang.org/docs/handbook/mixins.html
*/
export function applyMixins(derivedCtor, ...baseCtors) {
baseCtors.forEach((baseCtor) => {
Object.getOwnPropertyNames(baseCtor.prototype).forEach((name) => {
if (name !== 'constructor') {
Object.defineProperty(derivedCtor.prototype, name, Object.getOwnPropertyDescriptor(baseCtor.prototype, name));
}
});
});
}
//# sourceMappingURL=mixins.js.map