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
Added a fix for this issue. let was only being used in two locations compared to var so I decided to remove it to make sure there were no backward compatibility issues
Hi,
SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode
So, it needs "use strict"; or changing all "let" by "var".
Thx.
The text was updated successfully, but these errors were encountered: