Skip to content

Instantly share code, notes, and snippets.

@alex-cory
Created November 20, 2018 18:23
Show Gist options
  • Save alex-cory/727caa3e0a6d36fb880dc1afa2333cef to your computer and use it in GitHub Desktop.
Save alex-cory/727caa3e0a6d36fb880dc1afa2333cef to your computer and use it in GitHub Desktop.
Capitalizes strings
/**
* Handles special characters too
*/
const capitalize = w => w.toLowerCase().replace(/(?:^|\s)\S/g, l => l.toUpperCase());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment