deno/cli/tests/bundle/fixture01.out

8 lines
96 B
Plaintext

const a = "a";
const mod = function() {
return {
a: a
};
}();
console.log(mod);