Files
babel/packages/babel-plugin-transform-arrow-functions/test/fixtures/arrow-functions/spec/input.js
2018-01-09 15:36:42 +01:00

11 lines
150 B
JavaScript

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