decaf icon indicating copy to clipboard operation
decaf copied to clipboard

Arrow function with single-line body should remain a single-line body

Open eventualbuddha opened this issue 8 years ago • 0 comments

(a) => a

should become

a => a;

but actually becomes

a => {
  return a;
};

eventualbuddha avatar Jan 28 '16 20:01 eventualbuddha