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

13 lines
308 B
JavaScript

"use strict";
var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };
var Test = (function () {
function Test() {
_classCallCheck(this, Test);
arr.map(x => x * x);
}
return Test;
})();