Skip to content

Instantly share code, notes, and snippets.

@mhartington
Created January 3, 2019 15:30
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 mhartington/b0c7379867822477be1aa7350c773d81 to your computer and use it in GitHub Desktop.
Save mhartington/b0c7379867822477be1aa7350c773d81 to your computer and use it in GitHub Desktop.
function toTitleCase(str) {
return str.replace(
/\w\S*/g,
txt => txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase()
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment