js β’ Lines: 11const formatRelativeLocale = {
lastWeek: "'δΈε'eeee p",
yesterday: "'ζ¨ε€©' p",
today: "'δ»ε€©' p",
tomorrow: "'ζ倩' p",
nextWeek: "'δΈε'eeee p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];