2019-01-13 15:56:39 -08:00
|
|
|
export const absoluteDateFormatter = new Intl.DateTimeFormat('en-US', {
|
|
|
|
year: 'numeric',
|
|
|
|
month: 'long',
|
|
|
|
day: 'numeric',
|
|
|
|
hour: '2-digit',
|
|
|
|
minute: '2-digit'
|
|
|
|
})
|
2018-08-26 15:38:45 -07:00
|
|
|
|
2019-01-13 15:56:39 -08:00
|
|
|
export const shortAbsoluteDateFormatter = new Intl.DateTimeFormat('en-US', {
|
|
|
|
year: 'numeric',
|
|
|
|
month: 'short',
|
|
|
|
day: 'numeric',
|
|
|
|
hour: '2-digit',
|
|
|
|
minute: '2-digit'
|
|
|
|
})
|