Files
QR-Invoice/node_modules/svg-engine/lib/browser/cjs/shared/mixins/index.js
2026-01-12 13:12:46 +01:00

12 lines
491 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.applyMixins = applyMixins;
function applyMixins(derivedCtor, constructors) {
constructors.forEach(baseCtor => {
Object.getOwnPropertyNames(baseCtor.prototype).forEach(name => {
Object.defineProperty(derivedCtor.prototype, name, Object.getOwnPropertyDescriptor(baseCtor.prototype, name) ||
Object.create(null));
});
});
}
//# sourceMappingURL=index.js.map