Files
Armano 80a76a0a2b feat(minifier): negate binary comparison for typeof x < 'u' (#26367)
Allow inversion of binary operation when comparing `'u'` string with
`typeof

`!(typeof a < "u")` => `typeof a > "u"`
`!(typeof a > "u")` => `typeof a < "u"`

this is needed to support negation of short version of `typeof x ===
"undefined"` -> `typeof a > "u"` generated by
`substitute_typeof_undefined`

fixes #25294
related #26460
2026-09-09 09:19:02 +08:00
..
…