22 lines
588 B
JavaScript

var _Object$getPrototypeOf = require("babel-runtime/core-js/object/get-prototype-of");
var _classCallCheck = require("babel-runtime/helpers/es6/classCallCheck");
var _possibleConstructorReturn = require("babel-runtime/helpers/es6/possibleConstructorReturn");
var _inherits = require("babel-runtime/helpers/es6/inherits");
let Foo =
/*#__PURE__*/
function (_Bar) {
_inherits(Foo, _Bar);
function Foo() {
_classCallCheck(this, Foo);
return _possibleConstructorReturn(this, (Foo.__proto__ || _Object$getPrototypeOf(Foo)).apply(this, arguments));
}
return Foo;
}(Bar);