deno/cli/tests/bundle/fixture14.out
Kitson Kelly 7e2c7fb6c5
refactor(cli): migrate run and cache to new infrastructure (#7996)
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
2020-10-23 11:50:15 +11:00

26 lines
415 B
Plaintext

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