13 lines
308 B
JavaScript
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;
|
|
})(); |