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
The text was updated successfully, but these errors were encountered:
KermanX
changed the title
#__PURE__ marked optional chain expression with side-effect in arguments
Minifier: #__PURE__ marked optional chain expression with side-effect in arguments
Nov 28, 2024
Current behavior:
If
unknown
is nullish, in the original code,effect()
won't be called, but in the output code, it will.Playground link
Expected behavior:
The output should be either:
unknown !== null && unknown !== undefined && effect()
The text was updated successfully, but these errors were encountered: