Commit 0e58f4f08f161cff755674869e9ecd12e77f58ed
1 parent
25af8f88f6
Exists in
master
rellenarDigitos opcion caracter
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/js/app.js
... | ... | @@ -6,10 +6,10 @@ angular.module('focaFiltros', []) |
6 | 6 | }; |
7 | 7 | }) |
8 | 8 | .filter('rellenarDigitos', function() { |
9 | - return function(valor, cantidad) { | |
9 | + return function(valor, cantidad, caracter) { | |
10 | 10 | var ceros = ''; |
11 | 11 | for (var i = 0; i < cantidad; i++) { |
12 | - ceros += '0'; | |
12 | + ceros += caracter; | |
13 | 13 | } |
14 | 14 | return (ceros + valor).slice(cantidad * -1); |
15 | 15 | }; |