Skip to content

Instantly share code, notes, and snippets.

@haipeng
Last active April 8, 2018 03:16
Show Gist options
  • Save haipeng/1b380b15e763d1abefa844338f3be062 to your computer and use it in GitHub Desktop.
Save haipeng/1b380b15e763d1abefa844338f3be062 to your computer and use it in GitHub Desktop.
capitalize
function capitalize (word) {
return (word || '').replace(/^([a-z])/, w => w.toUpperCase());
}
function uncapitalize (word) {
return (word || '').replace(/^([A-Z])/, w => w.toLowerCase());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment