Hacker News new | ask | show | jobs
by Hurtak 2274 days ago
You can controll the formatting with empty comments

eg, if you dont like

    const {a, b, c} = props;
you can do

    const {
      // 
      a, 
      b, 
      c
    } = props;
1 comments

But please don’t.