実行前 test1.js
$(() => {
var bigCat = new BigCat();
bigCat.bark();
});
class BigCat{
bark(){
const bark_str = 'ギョーム';
$('#res').html(bark_str);
}
}
実行後 dist/test1.js
"use strict";
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
$(function () {
var bigCat = new BigCat();
bigCat.bark();
});
var BigCat =
/*#__PURE__*/
function () {
function BigCat() {
_classCallCheck(this, BigCat);
}
_createClass(BigCat, [{
key: "bark",
value: function bark() {
var bark_str = 'ギョーム';
$('#res').html(bark_str);
}
}]);
return BigCat;
}();