1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-15 16:43:44 -05:00
denoland-deno/cli/tests/bundle/fixture14.out

26 lines
415 B
Text
Raw Normal View History

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);