Skip to content

Commit

Permalink
Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Mar 30, 2021
1 parent 2dbc434 commit f074690
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
@@ -0,0 +1,5 @@
class A extends B {
constructor(args) {
super(...args)
}
}
@@ -0,0 +1,4 @@
{
"targets": "firefox 40",
"presets": ["env"]
}
@@ -0,0 +1,14 @@
var A = /*#__PURE__*/function (_B) {
"use strict";

babelHelpers.inherits(A, _B);

var _super = babelHelpers.createSuper(A);

function A(args) {
babelHelpers.classCallCheck(this, A);
return _super.call.apply(_super, [this].concat(babelHelpers.toConsumableArray(args)));
}

return A;
}(B);

0 comments on commit f074690

Please sign in to comment.