14 lines
230 B
JavaScript
14 lines
230 B
JavaScript
var Test = function () {
|
|
function Test() {
|
|
babelHelpers.classCallCheck(this, Test);
|
|
}
|
|
|
|
babelHelpers.createClass(Test, [{
|
|
key: "test",
|
|
value: function test() {
|
|
return 5 + 5;
|
|
}
|
|
}]);
|
|
return Test;
|
|
}();
|