JPDev@programming.dev to Programmer Humor@programming.dev · 1 year ago===programming.devimagemessage-square76fedilinkarrow-up1693arrow-down117
arrow-up1676arrow-down1image===programming.devJPDev@programming.dev to Programmer Humor@programming.dev · 1 year agomessage-square76fedilink
minus-squarekevincox@lemmy.mlcakelinkfedilinkarrow-up2·1 year agoI just tested and Terser will convert v === null || v === undefined to null==v. Personally I would prefer to read the code that explicitly shows that it is checking for both and let my minifier/optimizer worry about generating compact code.
minus-squareSzethFriendOfNimi@lemmy.worldlinkfedilinkarrow-up1arrow-down1·1 year agoTry changing to const === variable. That’s most likely what’s it doing to minimize the risk of accidental assignment.
minus-squarekevincox@lemmy.mlcakelinkfedilinkarrow-up3·1 year agoWut? This is an automated optimizer. It is not worried about accidental assignment.
minus-squareSzethFriendOfNimi@lemmy.worldlinkfedilinkarrow-up1·1 year agoI agree it shouldn’t. But I’ve seen linters that automatically change it since they seem to be forcing practical conventions sometimes.
minus-squarekevincox@lemmy.mlcakelinkfedilinkarrow-up3·1 year agoLinters and minifers are completely different tools.
minus-squareSzethFriendOfNimi@lemmy.worldlinkfedilinkarrow-up3·1 year agoGood point. That’s what I get for shooting from the hip. Thanks!
I just tested and Terser will convert
v === null || v === undefined
tonull==v
. Personally I would prefer to read the code that explicitly shows that it is checking for both and let my minifier/optimizer worry about generating compact code.Try changing to const === variable. That’s most likely what’s it doing to minimize the risk of accidental assignment.
Wut? This is an automated optimizer. It is not worried about accidental assignment.
I agree it shouldn’t. But I’ve seen linters that automatically change it since they seem to be forcing practical conventions sometimes.
Linters and minifers are completely different tools.
Good point. That’s what I get for shooting from the hip.
Thanks!