swc/crates/swc_bundler/tests/fixture/deno-9560/case1/output/entry.inlined.ts

14 lines
220 B
TypeScript
Raw Normal View History

const water = 'Water';
function isWater(x) {
return x === water;
}
const mod = {
water: water,
isWater: isWater
};
function foo(x) {
return mod[x];
}
export { foo as foo };
export { isWater as isWater };