Code coverage report for node_modules/babel-runtime/helpers/create-class.js

Statements: 93.33% (14 / 15)      Branches: 50% (3 / 6)      Functions: 100% (3 / 3)      Lines: 100% (12 / 12)      Ignored: none     

All files » node_modules/babel-runtime/helpers/ » create-class.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21    3 3 11 47 47 47     11     3 11 11 11       3
"use strict";
 
exports["default"] = (function () {
  function defineProperties(target, props) {
    for (var key in props) {
      var prop = props[key];
      prop.configurable = true;
      Eif (prop.value) prop.writable = true;
    }
 
    Object.defineProperties(target, props);
  }
 
  return function (Constructor, protoProps, staticProps) {
    Eif (protoProps) defineProperties(Constructor.prototype, protoProps);
    Iif (staticProps) defineProperties(Constructor, staticProps);
    return Constructor;
  };
})();
 
exports.__esModule = true;