Skip to content

Instantly share code, notes, and snippets.

@auxcoder
Created November 30, 2016 15:18
Show Gist options
  • Save auxcoder/0ebc9cfcf5087f96d17bf108839177ce to your computer and use it in GitHub Desktop.
Save auxcoder/0ebc9cfcf5087f96d17bf108839177ce to your computer and use it in GitHub Desktop.
Angular filter to convert a frase/name (string input) into an acronym.
(function() {
'use strict';
angular.module('someApp').filter('acronym', function(){
return function(input){
return input.split(' ').map(function(x){ return x.charAt(0)}).join('').toUpperCase();
}
});
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment