summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/bundle/fixture09.out
blob: e06cc92decafe64bc91d3fbbf6350385d47a4a00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function a3(...d) {
    return d.join(" ");
}
const mod = function() {
    return {
        a: a3
    };
}();
function a1(...d) {
    return d.join("/");
}
const mod1 = function() {
    return {
        a: a1
    };
}();
const k = globalThis.value ? mod : mod1;
const { a: a2 ,  } = k;
export { a2 as a };