function toFechaFormat()

in src/app/date-time.js [2:7]


function toFechaFormat(pattern) {
  return (pattern || '').
    replace(/y/g, 'Y').
    replace(/d/g, 'D').
    replace('aaa', 'A');
}