es3ify icon indicating copy to clipboard operation
es3ify copied to clipboard

Modifies code in comments in some cases

Open RoyTinker opened this issue 7 years ago • 0 comments

Consider the following code:

var data = [
  { 
    id: 0,
    name: "John Indigo"
  }/*,
  {
    id: 1,
    name: "Alice Beauxfort"
  },
  {
    id: 3,
    name: "Bram van Dijt"
  }*/
];

es3ify will return the following. Note that code inside the multi-line comment has been modified (all commas removed):

var data = [
    { 
      id: 0,
      name: "John Indigo"
    }/*
    {
      id: 1
      name: "Alice Beauxfort"
    }
    {
      id: 3
      name: "Bram van Dijt"
    }*/
  ];

RoyTinker avatar Dec 19 '17 19:12 RoyTinker