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
After Webpack bundle my code, code minification would change the name, object[NAME] === 'AbortSignal' is not true anymore
so this error would pop up,
The only solution is to turn off code minification
There should be a better way than this
Propose (What to do next)
Delete this part altogether, don't check the name
Don't compare with string 'AbortSignal' like this object[NAME] === 'AbortSignal',
in Ruby we have class.name to get the class name, I am not sure what's the equivalent in JS