1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 1 1 1 1 | (function() {
'use strict';
function uppercase() {
return function(text) {
return text ? text.toUpperCase() : text;
};
}
angular.module('common.filters.uppercase', [])
.filter('uppercase', uppercase);
})();
|