Skip to content

Instantly share code, notes, and snippets.

@anteriovieira
Forked from xiCO2k/capitalize.js
Created September 21, 2021 12:32
Show Gist options
  • Save anteriovieira/d9fc0dc5643be1979e837bbea4816a75 to your computer and use it in GitHub Desktop.
Save anteriovieira/d9fc0dc5643be1979e837bbea4816a75 to your computer and use it in GitHub Desktop.
Capitalize Helper
const capitalize = str => str.replace(/^\w|\s\w/g, char => char.toUpperCase());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment