mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 00:52:29 +03:00
9ffe47106a
swc: - Fix `target` option. (#2225)
6 lines
87 B
TypeScript
6 lines
87 B
TypeScript
const f = (...characters)=>characters.length
|
|
;
|
|
const g = (str)=>f(...str)
|
|
;
|
|
g("meow");
|