19 lines
539 B
JavaScript
19 lines
539 B
JavaScript
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
|
|
import _possibleConstructorReturn from "@babel/runtime/helpers/esm/possibleConstructorReturn";
|
|
import _getPrototypeOf from "@babel/runtime/helpers/esm/getPrototypeOf";
|
|
import _inherits from "@babel/runtime/helpers/esm/inherits";
|
|
|
|
let Foo =
|
|
/*#__PURE__*/
|
|
function (_Bar) {
|
|
_inherits(Foo, _Bar);
|
|
|
|
function Foo() {
|
|
_classCallCheck(this, Foo);
|
|
|
|
return _possibleConstructorReturn(this, _getPrototypeOf(Foo).apply(this, arguments));
|
|
}
|
|
|
|
return Foo;
|
|
}(Bar);
|