follow icon indicating copy to clipboard operation
follow copied to clipboard

Can't run my edited code

Open TokaLazy opened this issue 7 years ago • 1 comments

I tried a simple code but impossible to check it.

const log = value => console.log(value);

let foo = 'bar';

log(foo);

TokaLazy avatar Sep 06 '17 09:09 TokaLazy

sorry,esprima support for arrow function is not perfect

I use it like this

const log = value => {
  console.log(value);
}

let foo = 'bar';

log(foo);

channg avatar Sep 13 '17 13:09 channg