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