Skip to content

Instantly share code, notes, and snippets.

@xiCO2k
Last active September 21, 2021 12:32
Show Gist options
  • Save xiCO2k/cd149420edcaae20a6588ec90934c28c to your computer and use it in GitHub Desktop.
Save xiCO2k/cd149420edcaae20a6588ec90934c28c 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