Skip to content

Instantly share code, notes, and snippets.

@jrobinsonc
Last active April 7, 2016 01:49
Show Gist options
  • Save jrobinsonc/7c5c3769775f34f4306e to your computer and use it in GitHub Desktop.
Save jrobinsonc/7c5c3769775f34f4306e to your computer and use it in GitHub Desktop.
Angular filter: Capitalize words
angular.module('mymodule').filter('ucwords', function() {
return function(input,arg) {
return input.replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); });
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment