b765e850b9d91bcdd24ba052ed1135449fc67fdf2e4019c3fcf2a07b336d73ce9bd2e7d0ac49309734e80ab8d80b3bf3e7b0adf35c6c5783c34738784864b1 511 B

123456789101112
  1. /** PURE_IMPORTS_START PURE_IMPORTS_END */
  2. export function applyMixins(derivedCtor, baseCtors) {
  3. for (var i = 0, len = baseCtors.length; i < len; i++) {
  4. var baseCtor = baseCtors[i];
  5. var propertyKeys = Object.getOwnPropertyNames(baseCtor.prototype);
  6. for (var j = 0, len2 = propertyKeys.length; j < len2; j++) {
  7. var name_1 = propertyKeys[j];
  8. derivedCtor.prototype[name_1] = baseCtor.prototype[name_1];
  9. }
  10. }
  11. }
  12. //# sourceMappingURL=applyMixins.js.map