Skip to content

Instantly share code, notes, and snippets.

@akhsiM
Created March 2, 2021 01:54
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 akhsiM/f73850ec14eaa3bc26cf9b5065bca8d0 to your computer and use it in GitHub Desktop.
Save akhsiM/f73850ec14eaa3bc26cf9b5065bca8d0 to your computer and use it in GitHub Desktop.
const capitalize = (s) => {
if (typeof s !== 'string') return '';
return s.charAt(0).toUpperCase() + s.toLowerCase().slice(1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment