Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 738 | Rev 893 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 738 Rev 739
Línea 64... Línea 64...
64
 
64
 
65
    if (isNaN(dateObj)) {
65
    if (isNaN(dateObj)) {
66
      return date
66
      return date
Línea 67... Línea 67...
67
    }
67
    }
-
 
68
 
-
 
69
    return new Intl.DateTimeFormat('en-US', {
-
 
70
      dateStyle: 'short',
-
 
71
      timeStyle: 'medium',
68
 
72
      hour12: false
Línea 69... Línea 73...
69
    return new Intl.DateTimeFormat('en-US').format(dateObj)
73
    }).format(dateObj)
70
  }
74
  }
71
 
75