swc/tests/fixture/issue-1701/case2/output/index.ts
강동윤 9ffe47106a
fix(swc): Fix target (#2226)
swc:
 - Fix `target` option. (#2225)
2021-09-10 15:43:14 +09:00

6 lines
87 B
TypeScript

const f = (...characters)=>characters.length
;
const g = (str)=>f(...str)
;
g("meow");