16 lines
267 B
JavaScript
16 lines
267 B
JavaScript
"use strict";
|
|
|
|
var Test = (function () {
|
|
var _Test = function Test() {
|
|
babelHelpers.classCallCheck(this, _Test);
|
|
};
|
|
|
|
babelHelpers.createClass(_Test, {
|
|
test: {
|
|
value: function test() {
|
|
return 5 + 5;
|
|
}
|
|
}
|
|
});
|
|
return _Test;
|
|
})(); |