Skip to content

Instantly share code, notes, and snippets.

@glynrob
Created November 5, 2013 20:39
Show Gist options
  • Select an option

  • Save glynrob/7325808 to your computer and use it in GitHub Desktop.

Select an option

Save glynrob/7325808 to your computer and use it in GitHub Desktop.
_.mixin({
capitalize: function(string) {
return string.charAt(0).toUpperCase() + string.substring(1).toLowerCase();
}
});
var capitalizetext = _("sample text").capitalize();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment