mirror of
https://github.com/rjNemo/deno_tuto
synced 2026-06-10 20:26:40 +00:00
6 lines
218 B
TypeScript
6 lines
218 B
TypeScript
// Library exporting `sayHello` function
|
|
|
|
const capitalize = (word: string) =>
|
|
`${word.charAt(0).toUpperCase()}${word.toLowerCase().slice(1)}`;
|
|
|
|
export const sayHello = (name: string) => `Hello ${capitalize(name)}`;
|