Files
babel/packages/babel-plugin-transform-runtime/test/fixtures/use-options/useESModules/expected.js
2017-09-26 11:28:57 -07:00

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);