Skip to content

Instantly share code, notes, and snippets.

@pirey
Created June 5, 2018 04:03
Show Gist options
  • Save pirey/c0c0a51abb0e4fce4b9da6fd3d3d33be to your computer and use it in GitHub Desktop.
Save pirey/c0c0a51abb0e4fce4b9da6fd3d3d33be to your computer and use it in GitHub Desktop.
const capitalize = (s) => s.toLowerCase().split(' ').map((w) => w.replace(/^\w/, (s) => s.toUpperCase())).join(' ')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment