-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Open
Labels
Description
const a = 256 * 2;
minify to
const a=512;
(https://esbuild.github.io/try/#dAAwLjI1LjgALS1taW5pZnkAY29uc3QgYSA9IDI1NiAqIDI7)
But
0;
const a = 256 * 2;
minify to
const a=256*2;
(https://esbuild.github.io/try/#dAAwLjI1LjgALS1taW5pZnkAMDsKY29uc3QgYSA9IDI1NiAqIDI7), where constant folding fails.