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
It appears a regex ending in * breaks indenting below it in a block.
if(true){varre=/.*/;console.log('I am broken');console.log('Because I end in *');}if(true){varre=/.*$/;console.log('I do not end in *');console.log('So I am fine');}