timepiece/node_modules/date-fns/locale/ja-Hira/_lib/formatRelative.mjs

13 lines
330 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];
};