πŸ“„ formatRelative.js
/home/palash/git/site/node_modules/date-fns/locale/zh-HK/_lib/formatRelative.js
Language: js β€’ Lines: 11
const formatRelativeLocale = {
  lastWeek: "'δΈŠε€‹'eeee p",
  yesterday: "'昨倩' p",
  today: "'今倩' p",
  tomorrow: "'明倩' p",
  nextWeek: "'下個'eeee p",
  other: "P",
};

export const formatRelative = (token, _date, _baseDate, _options) =>
  formatRelativeLocale[token];