7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
/**
|
|
* This stub is provided to make it straightforward to get started.
|
|
*/
|
|
|
|
export const twoFer = (name: string = "you"): string =>
|
|
`One for ${name}, one for me.`;
|