You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* eslint-disable */
function spyReport(event) {
if (true) return;
if (!globalState.spyListeners.length) return;
const listeners = globalState.spyListeners;
for (let i = 0, l = listeners.length; i < l; i++) {
listeners[i](event);
}
}
spyReport(asdf);
/* eslint-disable */
function spyReport(event) {
if (true) return;
if (!globalState.spyListeners.length) return;
const listeners = globalState.spyListeners;
for (let i = 0, l = listeners.length; i < l; i++) {
listeners[i](event);
}
}
spyReport(asdf);
build it with esbuild any.js --bundle --minify --outfile=any.dist.js
is minified to
while it should be
How to reproduce?
create
any.js
which have the following contentbuild it with
esbuild any.js --bundle --minify --outfile=any.dist.js
esbuild version: 0.8.7
node version: v12.16.1
OS: macOS Catalina 10.15.7
The text was updated successfully, but these errors were encountered: