2020-11-29 14:13:27 -08:00
|
|
|
import { LOCALE } from '../_static/intl'
|
|
|
|
|
|
|
|
export const absoluteDateFormatter = new Intl.DateTimeFormat(LOCALE, {
|
2019-01-13 15:56:39 -08:00
|
|
|
year: 'numeric',
|
|
|
|
month: 'long',
|
|
|
|
day: 'numeric',
|
|
|
|
hour: '2-digit',
|
|
|
|
minute: '2-digit'
|
|
|
|
})
|
2018-08-26 15:38:45 -07:00
|
|
|
|
2020-11-29 14:13:27 -08:00
|
|
|
export const shortAbsoluteDateFormatter = new Intl.DateTimeFormat(LOCALE, {
|
2019-01-13 15:56:39 -08:00
|
|
|
year: 'numeric',
|
|
|
|
month: 'short',
|
|
|
|
day: 'numeric',
|
|
|
|
hour: '2-digit',
|
|
|
|
minute: '2-digit'
|
|
|
|
})
|