Input:
function outer(input) {
let data = input;
Object.keys(data).forEach((key) => {
let value = data[key];
if (value) {
function appendStyle() {}
console.log(appendStyle);
}
console.log(value);
});
}
Output:
function e(e) {
let t = e;
Object.keys(t).forEach((e) => {
let n = t[e];
if (n) {
function e() {}
console.log(e);
}
console.log(n);
});
}
In the current, above output, function e conflicts with e as the callback of the for each call.
rolldown/rolldown#8791
Input:
Output:
In the current, above output,
function econflicts witheas the callback of the for each call.rolldown/rolldown#8791