volleyball-dev-frontend/node_modules/date-fns/locale/ja/_lib/formatRelative.mjs
2025-06-02 16:42:16 +00:00

13 lines
303 B
JavaScript

const formatRelativeLocale = {
lastWeek: "先週のeeeeのp",
yesterday: "昨日のp",
today: "今日のp",
tomorrow: "明日のp",
nextWeek: "翌週のeeeeのp",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) => {
return formatRelativeLocale[token];
};