Added babel-helper-split-export-declaration (#7313)

This commit is contained in:
Mateusz Burzyński
2018-02-13 16:44:05 +01:00
committed by GitHub
parent ea3f2d9299
commit 4d164bd8e6
18 changed files with 158 additions and 104 deletions

View File

@@ -5,8 +5,8 @@ Object.defineProperty(exports, "__esModule", {
});
exports.default = void 0;
var _class = function _class() {
babelHelpers.classCallCheck(this, _class);
var _default = function _default() {
babelHelpers.classCallCheck(this, _default);
};
exports.default = _class;
exports.default = _default;

View File

@@ -1,14 +1,14 @@
var _class =
var _default =
/*#__PURE__*/
function (_A) {
babelHelpers.inherits(_class, _A);
babelHelpers.inherits(_default, _A);
function _class() {
babelHelpers.classCallCheck(this, _class);
return babelHelpers.possibleConstructorReturn(this, (_class.__proto__ || Object.getPrototypeOf(_class)).apply(this, arguments));
function _default() {
babelHelpers.classCallCheck(this, _default);
return babelHelpers.possibleConstructorReturn(this, (_default.__proto__ || Object.getPrototypeOf(_default)).apply(this, arguments));
}
return _class;
return _default;
}(A);
export { _class as default };
export { _default as default };