1
0
Fork 0
VaultUI/src/formatDistance.js

17 lines
377 B
JavaScript
Raw Normal View History

2021-04-29 10:22:57 +01:00
import { de, enGB, fr, nl, ru, it } from 'date-fns/locale'
2021-04-24 18:42:13 +01:00
import { formatDistance as formatDistanceReal} from 'date-fns';
function getLocale() {
return {
"en": enGB,
"fr": fr,
"nl": nl,
"ru": ru,
"de": de,
2021-04-29 10:22:57 +01:00
"it": it,
}[pageState.language];
2021-04-24 18:42:13 +01:00
}
export function formatDistance(d1, d2) {
return formatDistanceReal(d1, d2, { locale: getLocale() });
}