Files
babel/packages/babel-plugin-transform-arrow-functions/test/fixtures/arrow-functions/spec/actual.js

11 lines
150 B
JavaScript

function foo() {
arr.map(x => x * x);
var f = (x, y) => x * y;
(function () {
return () => this;
})();
return {
g: () => this
}
}