This commit is contained in:
Chris Wanstrath 2025-09-20 20:13:19 -07:00
parent d4809f8af0
commit c78154af5f

View File

@ -1,3 +1,3 @@
function (...args: string[]): string { export default function (...args: string[]): string {
return args.join(" ") return args.join(" ")
} }