deno_tuto/examples/hello.ts
2021-02-18 20:10:55 +01:00

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)}`;