Reproducing Webpack issue #12339
!new.target.isInitialized
is bundled as true
To reproduce:
npm i
npm run webpack
Expected behavior
if(!new.target.isInitialized)
should be bundled as if(!new.target.isInitialized)
Actual behavior
if(!new.target.isInitialized)
is bundled as if(true)