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