Files
babel/test/fixtures/transformation/es7-array-comprehension/arguments/expected.js
Sebastian McKenzie 93ceafc732 better uid names
2015-01-02 03:53:28 +11:00

18 lines
311 B
JavaScript

"use strict";
function add() {
var _arguments = arguments;
return (function () {
var _ref = [];
for (var _iterator = [1, 2, 3][Symbol.iterator](), _step; !(_step = _iterator.next()).done;) {
var i = _step.value;
_ref.push(i * _arguments[0]);
}
return _ref;
})();
}
add(5);