js • Lines: 11const formatRelativeLocale = {
lastWeek: "'sÃðasta' dddd 'kl.' p",
yesterday: "'à gær kl.' p",
today: "'Ã dag kl.' p",
tomorrow: "'á morgun kl.' p",
nextWeek: "dddd 'kl.' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];