Files
rules_bun/tests/library_test/helper.ts
2026-03-04 07:31:19 +00:00

4 lines
77 B
TypeScript

export function greeting(name: string): string {
return `hello-${name}`;
}