You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Uncaught TypeError: Identifier '$targ$0' has already been declared"
This is because the let variables leak out of the files and into the global context. I suggest that EG provide a param to wrap the code in an IIFE (or possibly make it default behaviour?).
This is only an issue when using ES6 mode (because babel converts let to var) when running in a browser (not an issue in node).
The text was updated successfully, but these errors were encountered:
The specific error I get (in JS) is:
This is because the
let
variables leak out of the files and into the global context. I suggest that EG provide a param to wrap the code in an IIFE (or possibly make it default behaviour?).This is only an issue when using ES6 mode (because babel converts
let
tovar
) when running in a browser (not an issue in node).The text was updated successfully, but these errors were encountered: