titleCase.tsx 182 B

12345678
  1. const titleCase = (str: string) =>
  2. str
  3. .toLowerCase()
  4. .split(' ')
  5. .map(word => word.charAt(0).toUpperCase() + word.slice(1))
  6. .join(' ');
  7. export default titleCase;