Skip to content

Instantly share code, notes, and snippets.

@HenriqueSilverio
Created February 22, 2021 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HenriqueSilverio/9691cf9cf7c29a4104c8749077e84072 to your computer and use it in GitHub Desktop.
Save HenriqueSilverio/9691cf9cf7c29a4104c8749077e84072 to your computer and use it in GitHub Desktop.
const capitalize = (string = '') => {
if (toString.call(string) !== '[object String]') {
return ''
}
const name = string.split(' ')[0]
return name.charAt(0).toUpperCase() + name.slice(1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment