deno/cli/tests/bundle/fixture08.out

8 lines
101 B
Plaintext

const a1 = "a";
const mod = function() {
return {
a: a1
};
}();
export { mod as a };