2015-03-07 01:25:18 +11:00

16 lines
251 B
JavaScript

"use strict";
var Test = (function () {
function Test() {
babelHelpers.classCallCheck(this, Test);
}
babelHelpers.createClass(Test, {
test: {
value: function test() {
return 5 + 5;
}
}
});
return Test;
})();