Skip to content

Instantly share code, notes, and snippets.

@yuritoledo
Created October 18, 2021 12:39
Show Gist options
  • Save yuritoledo/edf99a1f49c43480032eb772f6ab4461 to your computer and use it in GitHub Desktop.
Save yuritoledo/edf99a1f49c43480032eb772f6ab4461 to your computer and use it in GitHub Desktop.
capitalizeIt
const capitalizeIt = (text: string) => text.replace(/[a-z]/, (letter) => letter.toUpperCase());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment