Guest User

Untitled

a guest
Apr 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. angular
  2. .module("tuApp")
  3. .filter("fechaCorta", function () {
  4. return function (fecha) {
  5. if (!fecha) return "";
  6. fecha = new Date(fecha);
  7. return (fecha.getDate() > 9 ? fecha.getDate() : "0" + fecha.getDate()) + "/" + (["ene", "feb", "mar", "abr", "may", "jun", "jul", "ago", "sep", "oct", "nov", "dic"][fecha.getMonth()]) + "/" + fecha.getFullYear()
  8. };
  9. });
Add Comment
Please, Sign In to add comment