Created
October 18, 2021 12:39
-
-
Save yuritoledo/edf99a1f49c43480032eb772f6ab4461 to your computer and use it in GitHub Desktop.
capitalizeIt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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