(derivedCtor: any, constructors: any[])
| 75 | }; |
| 76 | |
| 77 | export const ɵapplyMixins = (derivedCtor: any, constructors: any[]) => { |
| 78 | constructors.forEach((baseCtor) => { |
| 79 | Object.getOwnPropertyNames(baseCtor.prototype || baseCtor).forEach((name) => { |
| 80 | Object.defineProperty( |
| 81 | derivedCtor.prototype, |
| 82 | name, |
| 83 | Object.getOwnPropertyDescriptor(baseCtor.prototype || baseCtor, name) |
| 84 | ); |
| 85 | }); |
| 86 | }); |
| 87 | }; |
no test coverage detected