I was messing around with jsfuck and found out that oxc_minifier doesn't minify +[false] or +[true] correctly. It is supposed to evalutate to NaN, but Oxc just grabs the boolean and uses that. This makes the 'minified' jsfuck code invalid (not that I'm using jsfuck on a day to day basis)
Original:
const a = +[false]
const b = +[true]
Oxc minified:
Expected:
const a = NaN
const b = NaN;
Playground (enable minify syntax)