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
Describe the bug
I have a piece of code that uses regexp to get keys and values,if i use this plugin(Babel-minify),i get an endless loop of code,but if i use terser, i can get the right code
Describe the bug
I have a piece of code that uses regexp to get keys and values,if i use this plugin(Babel-minify),i get an endless loop of code,but if i use terser, i can get the right code
To Reproduce
Minimal code to reproduce the bug
Actual Output
if i input use parseQuery("a=1&b=2"), this is an endless loop that causes the page to get stuck
Expected Output
if i use terser
input parseQuery("a=1&b=2"), i can get {a: "1", b: "2"} successfully
Configuration
How are you using babel-minify?
i use babel-minify CLI in global
Additional context
i also use terser in global, but can get right code, It runs normally in the browser
The text was updated successfully, but these errors were encountered: