Skip to content

Instantly share code, notes, and snippets.

@Jberivera
Last active February 16, 2018 21:15
Show Gist options
  • Select an option

  • Save Jberivera/ec01d89fe314fd58b383a546eda8ebae to your computer and use it in GitHub Desktop.

Select an option

Save Jberivera/ec01d89fe314fd58b383a546eda8ebae to your computer and use it in GitHub Desktop.
function capitalize (str) {
return str.replace(/(\w)\w+/g, (match, g1) => `${g1.toUpperCase()}${match.substring(1)}`)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment