decaf
decaf copied to clipboard
Arrow function with single-line body should remain a single-line body
(a) => a
should become
a => a;
but actually becomes
a => {
return a;
};