Skip to content

Instantly share code, notes, and snippets.

@keithics
Created April 1, 2014 09:39
Show Gist options
  • Save keithics/9911022 to your computer and use it in GitHub Desktop.
Save keithics/9911022 to your computer and use it in GitHub Desktop.
Capitalize Word - Angular filter
angular.module('mymodule').filter('ucfirst', 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