swc/crates/swc_bundler/tests/fixture/deno-9560/case1/output/entry.ts
2022-05-04 14:25:28 +00:00

14 lines
220 B
TypeScript

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