tg-bot-reminder/node_modules/titleize/index.d.ts
2023-08-13 16:48:04 +03:00

18 lines
301 B
TypeScript

/**
Capitalize every word in a string: `unicorn cake` → `Unicorn Cake`.
@param string - The string to titleize.
@example
```
import titleize from 'titleize';
titleize('foo bar');
//=> 'Foo Bar'
titleize('foo-bar');
//=> 'Foo-Bar'
```
*/
export default function titleize(string: string): string;