Skip to content

Instantly share code, notes, and snippets.

@bbrown
Last active March 3, 2016 22:11
Show Gist options
  • Select an option

  • Save bbrown/d22c6dfce869d32778d0 to your computer and use it in GitHub Desktop.

Select an option

Save bbrown/d22c6dfce869d32778d0 to your computer and use it in GitHub Desktop.
Angular filter to do a naive title case of a string
angular.module("app").filter("titleCase", function()
{
return function(input)
{
return (input && input.charAt(0).toUpperCase() + input.substr(1).toLowerCase());
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment