swc/crates/swc_bundler/tests/fixture/deno-8224/case1/input/b.ts

5 lines
134 B
TypeScript
Raw Normal View History

import { showValue } from "./a";
export const showList = (v: number[]): string => {
return `[${v.map(showValue).join(', ')}]`;
};