summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture14.out
blob: c1a14cebe198122f6947ec338fa093bc4da17552 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
const lib = function() {
    const a = function() {
        const a1 = [];
        return {
            a: a1
        };
    }();
    const b = function() {
        const b1 = [];
        return {
            b: b1
        };
    }();
    const c = function() {
        const c1 = [];
        return {
            c: c1
        };
    }();
    const mod = [];
    return {
        mod
    };
}();
console.log(lib);