Closed boopathi closed 7 years ago
Input
function foo() { return (a) => a; // return a => a works fine though }
Actual output
No space between return and a.
return
a
function foo(){returna=>a}
Fixed in 0.4, thanks
Input
Actual output
No space between
return
anda
.