16 lines
244 B
JavaScript
16 lines
244 B
JavaScript
var Test =
|
|
/*#__PURE__*/
|
|
function () {
|
|
function Test() {
|
|
babelHelpers.classCallCheck(this, Test);
|
|
}
|
|
|
|
babelHelpers.createClass(Test, [{
|
|
key: "test",
|
|
value: function test() {
|
|
return 5 + 5;
|
|
}
|
|
}]);
|
|
return Test;
|
|
}();
|